2023-06-13 09:16:54 +01:00
|
|
|
{pkgs, ...}: {
|
2023-06-04 09:38:51 +01:00
|
|
|
imports = [
|
|
|
|
../env
|
|
|
|
../tui
|
2023-06-09 18:51:28 +01:00
|
|
|
../gui/chromium.nix
|
2023-06-04 09:38:51 +01:00
|
|
|
../gui/foot.nix
|
|
|
|
../ssh/personal.nix
|
|
|
|
../git/personal.nix
|
|
|
|
];
|
2023-06-02 12:21:33 +01:00
|
|
|
home.username = "xenia";
|
|
|
|
home.homeDirectory = "/home/xenia";
|
|
|
|
home.stateVersion = "22.11";
|
2023-06-13 09:16:54 +01:00
|
|
|
home.packages = with pkgs; [home-manager sweet];
|
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
|
|
|
}
|