21 lines
476 B
Nix
21 lines
476 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../env
|
|
../../tui
|
|
../../gui/chromium.nix
|
|
../../gui/foot.nix
|
|
../../ssh/personal.nix
|
|
../../git/personal.nix
|
|
];
|
|
home.username = "xenia";
|
|
home.homeDirectory = "/home/xenia";
|
|
home.stateVersion = "22.11";
|
|
home.packages = with pkgs; [home-manager sweet];
|
|
programs.bash.bashrcExtra = ''
|
|
source $HOME/.nix-profile/etc/profile.d/nix.sh
|
|
'';
|
|
|
|
services.syncthing.enable = true;
|
|
fonts.fontconfig.enable = true;
|
|
}
|