aboutsummaryrefslogtreecommitdiff
path: root/nix/hosts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nix/hosts/common/homebrew.nix (renamed from hosts/common/homebrew.nix)0
-rw-r--r--nix/hosts/common/macos.nix (renamed from hosts/common/macos.nix)0
-rw-r--r--nix/hosts/common/nix.nix (renamed from hosts/common/nix.nix)0
-rw-r--r--nix/hosts/mba/default.nix (renamed from hosts/mba/default.nix)4
-rw-r--r--nix/hosts/work/default.nix (renamed from hosts/work/default.nix)4
5 files changed, 4 insertions, 4 deletions
diff --git a/hosts/common/homebrew.nix b/nix/hosts/common/homebrew.nix
index b358695..b358695 100644
--- a/hosts/common/homebrew.nix
+++ b/nix/hosts/common/homebrew.nix
diff --git a/hosts/common/macos.nix b/nix/hosts/common/macos.nix
index edc57a0..edc57a0 100644
--- a/hosts/common/macos.nix
+++ b/nix/hosts/common/macos.nix
diff --git a/hosts/common/nix.nix b/nix/hosts/common/nix.nix
index c828a16..c828a16 100644
--- a/hosts/common/nix.nix
+++ b/nix/hosts/common/nix.nix
diff --git a/hosts/mba/default.nix b/nix/hosts/mba/default.nix
index 5908a53..d583df6 100644
--- a/hosts/mba/default.nix
+++ b/nix/hosts/mba/default.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ self, ... }:
{
services.nix-daemon.enable = true;
@@ -9,5 +9,5 @@
# Touch ID for sudo auth
security.pam.enableSudoTouchIdAuth = true;
- home-manager.users.fcuny = import ../../nix/profiles/home-manager/personal.nix;
+ home-manager.users.fcuny = import "${self}/nix/profiles/home-manager/personal.nix";
}
diff --git a/hosts/work/default.nix b/nix/hosts/work/default.nix
index 3db1e6f..24cb95e 100644
--- a/hosts/work/default.nix
+++ b/nix/hosts/work/default.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ self, ... }:
{
services.nix-daemon.enable = true;
@@ -9,5 +9,5 @@
# Touch ID for sudo auth
security.pam.enableSudoTouchIdAuth = true;
- home-manager.users.fcuny = import ../../nix/profiles/home-manager/work.nix;
+ home-manager.users.fcuny = import "${self}/nix/profiles/home-manager/work.nix";
}