2023-06-13 09:16:54 +01:00
|
|
|
{pkgs, ...}: {
|
2023-06-17 10:30:39 +01:00
|
|
|
imports = [../../home/personal.nix];
|
2023-06-02 12:21:33 +01:00
|
|
|
home.username = "xenia";
|
|
|
|
home.homeDirectory = "/home/xenia";
|
|
|
|
home.stateVersion = "22.11";
|
2023-06-17 10:30:39 +01:00
|
|
|
home.packages = with pkgs; [home-manager];
|
2023-06-04 09:38:51 +01:00
|
|
|
programs.bash.bashrcExtra = ''
|
|
|
|
source $HOME/.nix-profile/etc/profile.d/nix.sh
|
|
|
|
'';
|
2023-06-02 12:21:33 +01:00
|
|
|
|
2023-06-13 09:16:54 +01:00
|
|
|
services.syncthing.enable = true;
|
2023-06-12 10:06:26 +01:00
|
|
|
fonts.fontconfig.enable = true;
|
2023-06-02 12:21:33 +01:00
|
|
|
}
|