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 /hosts/ahmed/home/default.nix | |
parent | e275224ea8f3182916e715861a09d8a5a13147ca (diff) |
tmp: Add stub HM module in hosts/ahmed/home/
Diffstat (limited to 'hosts/ahmed/home/default.nix')
-rw-r--r-- | hosts/ahmed/home/default.nix | 9 |
1 files changed, 9 insertions, 0 deletions
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 + ]; + }; +} |