summaryrefslogtreecommitdiff
path: root/phenex
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-05-03 15:32:09 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-05-03 15:36:21 -0600
commit7654882eb788bd39ca0ac0fcfeb801582c2865bb (patch)
tree92f7ab0ae8ba2662274b65c3e067bb0c2cecf1a8 /phenex
parent93bbc500e45cf453b06efcd3d723bd2a0adc8982 (diff)
downloadcfg.nix-7654882eb788bd39ca0ac0fcfeb801582c2865bb.tar.gz
cfg.nix-7654882eb788bd39ca0ac0fcfeb801582c2865bb.tar.xz
use absolute paths for imports
Hard linking configuration files was not reliably working for propagating changes back and forth between the host local link and the subfolder'ed file that is tracked. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'phenex')
-rw-r--r--phenex/configuration.nix40
1 files changed, 20 insertions, 20 deletions
diff --git a/phenex/configuration.nix b/phenex/configuration.nix
index 13dc381..d31ac91 100644
--- a/phenex/configuration.nix
+++ b/phenex/configuration.nix
@@ -6,26 +6,26 @@
{
imports =
- [ ./hardware-configuration.nix
- ./secrets.nix
- ./overlays.nix
- ./services/clamav.nix
- ./services/firewall.nix
- ./services/docker.nix
- ./services/dnsmasq.nix
- ./services/sound.nix
- ./services/x11.nix
- ./services/x11-laptop.nix
- ./services/kde.nix
- ./services/compton.nix
- ./services/haveged.nix
- ./system/ca.nix
- ./system/i18n.nix
- ./system/networking.nix
- ./system/packages.nix
- ./system/timezone.nix
- ./system/users.nix
- ./system/yubikey-gpg.nix
+ [ /etc/nixos/hardware-configuration.nix
+ /etc/nixos/secrets.nix
+ /etc/nixos/overlays.nix
+ /etc/nixos/services/clamav.nix
+ /etc/nixos/services/firewall.nix
+ /etc/nixos/services/docker.nix
+ /etc/nixos/services/dnsmasq.nix
+ /etc/nixos/services/sound.nix
+ /etc/nixos/services/x11.nix
+ /etc/nixos/services/x11-laptop.nix
+ /etc/nixos/services/kde.nix
+ /etc/nixos/services/compton.nix
+ /etc/nixos/services/haveged.nix
+ /etc/nixos/system/ca.nix
+ /etc/nixos/system/i18n.nix
+ /etc/nixos/system/networking.nix
+ /etc/nixos/system/packages.nix
+ /etc/nixos/system/timezone.nix
+ /etc/nixos/system/users.nix
+ /etc/nixos/system/yubikey-gpg.nix
];
networking.hostName = "phenex";