enable hm

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

View file

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

View file

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

@ -0,0 +1,3 @@
{...}: {
programs.home-manager.enable = true;
}