summaryrefslogtreecommitdiff
path: root/phenex
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2019-06-05 19:37:21 -0600
committerKenny Ballou <kballou@devnulllabs.io>2019-06-05 19:43:00 -0600
commit38dd661539894da8a3a12616cb19f89e2119ec5d (patch)
tree46eb6ea314003bba7bcbdbde72f6521d90b3d8fa /phenex
parenteb6b99c7d6b90d6f077fd945a583f2e76861c7b1 (diff)
downloadcfg.nix-38dd661539894da8a3a12616cb19f89e2119ec5d.tar.gz
cfg.nix-38dd661539894da8a3a12616cb19f89e2119ec5d.tar.xz
Use relative paths for imports
Revert 7654882 ("use absolute paths for imports", Fri May 3 15:32:09 2019 -0600) since this will not work when initiating new installations. Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'phenex')
-rw-r--r--phenex/configuration.nix42
1 files changed, 21 insertions, 21 deletions
diff --git a/phenex/configuration.nix b/phenex/configuration.nix
index 8d07c94..2868762 100644
--- a/phenex/configuration.nix
+++ b/phenex/configuration.nix
@@ -6,27 +6,27 @@
{
imports =
- [ /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/fonts.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
+ [ ./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/fonts.nix
+ ../system/i18n.nix
+ ../system/networking.nix
+ ../system/packages.nix
+ ../system/timezone.nix
+ ../system/users.nix
+ ../system/yubikey-gpg.nix
];
networking.hostName = "phenex";