summaryrefslogtreecommitdiff
path: root/os/common/modules/home-manager.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2025-08-27 18:05:21 +0530
committersinanmohd <sinan@sinanmohd.com>2025-08-27 18:05:21 +0530
commit4f2bb588ac32056f8eb6d470cd6f07f8936fae31 (patch)
treeffc4470e4111aa5512468d6cb8bd0c193df69590 /os/common/modules/home-manager.nix
parenta94f583b1ee575b6ca819a79edd93ed26758fc98 (diff)
chore(common): drop hostname from age key path
Diffstat (limited to 'os/common/modules/home-manager.nix')
-rw-r--r--os/common/modules/home-manager.nix3
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;
};
};
}