nixos/machines/Northstar/xenia.nix

14 lines
358 B
Nix
Raw Normal View History

{pkgs, ...}: {
imports = [../../home/personal.nix];
home.username = "xenia";
home.homeDirectory = "/home/xenia";
home.stateVersion = "22.11";
home.packages = with pkgs; [home-manager];
programs.bash.bashrcExtra = ''
source $HOME/.nix-profile/etc/profile.d/nix.sh
'';
services.syncthing.enable = true;
fonts.fontconfig.enable = true;
}