14 lines
358 B
Nix
14 lines
358 B
Nix
{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;
|
|
}
|