enable hm

This commit is contained in:
do butterflies cry? 2026-03-07 11:57:49 +10:00
parent d9432d87a4
commit ef5bc33856
Signed by: cry
GPG key ID: F68745A836CA0412
3 changed files with 8 additions and 0 deletions

View file

@ -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`

View file

@ -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
View file

@ -0,0 +1,3 @@
{...}: {
programs.home-manager.enable = true; # DEBUG: why didn't i enable it already?
}