enable hm
This commit is contained in:
parent
d9432d87a4
commit
9c4cc49430
3 changed files with 9 additions and 0 deletions
2
TODO.md
2
TODO.md
|
|
@ -3,6 +3,8 @@
|
|||
- [ ] add `options.experimental` for snowflake
|
||||
- [ ] add `legacyImports` support
|
||||
|
||||
- [ ] support hs system per dir, ie hosts/<name>/overlays or hosts/<name>/nixpkgs.nix
|
||||
|
||||
## Queued
|
||||
- [X] base should automatically be set as the default (dont do anything with the default)
|
||||
- [X] try to remove common foot guns, ie abort if the user provides the home-manager or microvm nixosModules
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@ in {
|
|||
];
|
||||
|
||||
home-manager = {
|
||||
enable = true; # DEBUG: why didn't i enable it already?
|
||||
|
||||
users =
|
||||
config.users.users
|
||||
|> attrNames
|
||||
|
|
@ -44,6 +46,8 @@ in {
|
|||
(import (root + "/nixpkgs.nix"))
|
||||
# options declarations
|
||||
(import ./nixpkgs.nix (args // {contextName = "homes";}))
|
||||
|
||||
./home.nix
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
3
cerulean/nixos/home.nix
Normal file
3
cerulean/nixos/home.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{...}: {
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue