flocon/home/default.nix

21 lines
385 B
Nix
Raw Normal View History

2024-09-30 06:55:37 +00:00
{
lib,
2024-09-30 06:55:37 +00:00
self,
...
}: {
imports = [
./terminal
2024-09-29 23:21:17 +00:00
self.nixosModules.theme
];
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;
theme.wallpaper = lib.mkDefault ../wallpapers/nix-wallpaper-nineish-catppuccin-frappe-alt.svg;
theme.scheme = lib.mkDefault "catppuccin-frappe";
2024-08-25 19:58:12 +00:00
}