diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-08-27 18:05:21 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-08-27 18:05:21 +0530 |
commit | 4f2bb588ac32056f8eb6d470cd6f07f8936fae31 (patch) | |
tree | ffc4470e4111aa5512468d6cb8bd0c193df69590 /os/common/modules | |
parent | a94f583b1ee575b6ca819a79edd93ed26758fc98 (diff) |
chore(common): drop hostname from age key path
Diffstat (limited to 'os/common/modules')
-rw-r--r-- | os/common/modules/home-manager.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/common/modules/home-manager.nix b/os/common/modules/home-manager.nix index d93df49..8212747 100644 --- a/os/common/modules/home-manager.nix +++ b/os/common/modules/home-manager.nix @@ -12,7 +12,8 @@ in { imports = [ ../../../home/common/home.nix - ] ++ lib.optional (builtins.pathExists ../../../home/${host}) ../../../home/${host}/home.nix; + ] + ++ lib.optional (builtins.pathExists ../../../home/${host}) ../../../home/${host}/home.nix; }; }; } |