Nix/home/common/default.nix
2024-08-04 22:42:22 -04:00

23 lines
368 B
Nix

{ ... }:
{
imports = [
./bash.nix
./firefox.nix
./git.nix
./gnome
./packages.nix
];
home = {
file."Pictures/Wallpapers" = {
recursive = true;
source = ./wallpapers;
};
stateVersion = "23.11"; # DO NOT CHANGE AFTER INSTALL
};
programs.home-manager.enable = true; # Let Home Manager install and manage itself.
}