From 8ca09698b97a1b3ee32cbae9f18231d30fe9de71 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Tue, 16 Sep 2025 22:13:49 +0200 Subject: [PATCH] Rename `shared` nix files to `common` --- flake/hosts.nix | 2 +- hosts/{shared.nix => common.nix} | 0 users/{shared-home.nix => common-home.nix} | 0 users/seb/home.nix | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename hosts/{shared.nix => common.nix} (100%) rename users/{shared-home.nix => common-home.nix} (100%) diff --git a/flake/hosts.nix b/flake/hosts.nix index c26b3a2..e1a48c0 100644 --- a/flake/hosts.nix +++ b/flake/hosts.nix @@ -26,7 +26,7 @@ let in [ { networking = { inherit hostName; }; } - "${self}/hosts/shared.nix" + "${self}/hosts/common.nix" ] ++ hostFiles ++ userFiles; diff --git a/hosts/shared.nix b/hosts/common.nix similarity index 100% rename from hosts/shared.nix rename to hosts/common.nix diff --git a/users/shared-home.nix b/users/common-home.nix similarity index 100% rename from users/shared-home.nix rename to users/common-home.nix diff --git a/users/seb/home.nix b/users/seb/home.nix index de33bed..1ef584c 100644 --- a/users/seb/home.nix +++ b/users/seb/home.nix @@ -1,6 +1,6 @@ { pkgs, ... }: { - imports = [ ../shared-home.nix ]; + imports = [ ../common-home.nix ]; home.sessionVariables.NH_FLAKE = "~/Projects/nixos-config";