diff options
author | Linnnus <[email protected]> | 2024-02-20 09:15:27 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-02-20 09:15:27 +0100 |
commit | 1f675d8a4f90ea5e043a281f5b2a748033ada082 (patch) | |
tree | 1fac0d8abf516688edb63a1f42df3f2c114d4ff5 | |
parent | e275224ea8f3182916e715861a09d8a5a13147ca (diff) |
tmp: Add stub HM module in hosts/ahmed/home/
-rw-r--r-- | hosts/ahmed/configuration.nix | 1 | ||||
-rw-r--r-- | hosts/ahmed/home/default.nix | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/hosts/ahmed/configuration.nix b/hosts/ahmed/configuration.nix index 12f4f10..43a170c 100644 --- a/hosts/ahmed/configuration.nix +++ b/hosts/ahmed/configuration.nix @@ -18,6 +18,7 @@ ./linus.onl ./nofitications.linus.onl ./ssh + ./home ]; # Create the main user. diff --git a/hosts/ahmed/home/default.nix b/hosts/ahmed/home/default.nix new file mode 100644 index 0000000..a031e96 --- /dev/null +++ b/hosts/ahmed/home/default.nix @@ -0,0 +1,9 @@ +# Here we extend the HM user defined in `home/default.nix`. All the global HM +# stuff is defined in there. The only imports here are specific to this host. +{...}: { + home-manager.users.linus = { + imports = [ + # empty for now + ]; + }; +} |