diff options
| author | Fuwn <[email protected]> | 2024-10-03 01:40:50 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 01:40:50 -0700 |
| commit | 4c9d688aefcb6517087f1c366d99d36fea6081cf (patch) | |
| tree | d44be27c97de61ec1992fd87c2c9d2688f55b6d7 /hosts/default.nix | |
| parent | home: core module (diff) | |
| download | nixos-config-4c9d688aefcb6517087f1c366d99d36fea6081cf.tar.xz nixos-config-4c9d688aefcb6517087f1c366d99d36fea6081cf.zip | |
akashi: add akashi home-manager user
Diffstat (limited to 'hosts/default.nix')
| -rw-r--r-- | hosts/default.nix | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index 9b45eaf..8da9c9f 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -87,7 +87,19 @@ in nixosSystem { inherit pkgs; - modules = [ ./akashi ] ++ pcModules pkgs.system; + modules = [ + ./akashi + inputs.home-manager.nixosModules.home-manager + { + home-manager = { + users.ebisu = import "${self}/home/ebisu/core"; + + extraSpecialArgs = { + inherit inputs; + }; + }; + } + ] ++ pcModules pkgs.system; specialArgs = { inherit |