flocon/home/default.nix

17 lines
207 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-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;
}