flocon/home/default.nix

18 lines
283 B
Nix
Raw Normal View History

2024-09-30 06:55:37 +00:00
{
self,
nix-colors,
...
}: {
imports = [
./terminal
2024-09-29 23:21:17 +00:00
self.nixosModules.theme
2024-09-30 06:55:37 +00:00
nix-colors.homeManagerModules.default
];
2024-09-25 07:02:43 +00:00
home = {
username = "nezia";
homeDirectory = "/home/nezia";
stateVersion = "24.05";
};
2024-08-25 19:58:12 +00:00
programs.home-manager.enable = true;
}