enable hm
This commit is contained in:
parent
d9432d87a4
commit
ef5bc33856
3 changed files with 8 additions and 0 deletions
3
TODO.md
3
TODO.md
|
|
@ -3,10 +3,13 @@
|
||||||
- [ ] add `options.experimental` for snowflake
|
- [ ] add `options.experimental` for snowflake
|
||||||
- [ ] add `legacyImports` support
|
- [ ] add `legacyImports` support
|
||||||
|
|
||||||
|
- [ ] support hs system per dir, ie hosts/<name>/overlays or hosts/<name>/nixpkgs.nix
|
||||||
|
|
||||||
## Queued
|
## Queued
|
||||||
- [X] base should automatically be set as the default (dont do anything with the default)
|
- [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
|
- [X] try to remove common foot guns, ie abort if the user provides the home-manager or microvm nixosModules
|
||||||
since cerulean ALREADY provides these
|
since cerulean ALREADY provides these
|
||||||
|
- [ ] per node home configuration is a lil jank rn
|
||||||
|
|
||||||
- [ ] deploy port should default to the first port given to `services.openssh`
|
- [ ] deploy port should default to the first port given to `services.openssh`
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,8 @@ in {
|
||||||
(import (root + "/nixpkgs.nix"))
|
(import (root + "/nixpkgs.nix"))
|
||||||
# options declarations
|
# options declarations
|
||||||
(import ./nixpkgs.nix (args // {contextName = "homes";}))
|
(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; # DEBUG: why didn't i enable it already?
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue