diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-11 21:42:11 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-12-11 21:42:11 +0100 |
commit | 8f9b3d80a798469b9324430815022c7f929acf20 (patch) | |
tree | d1ec397d7f798241d662fada1c74b74ce41f0003 | |
parent | Fix path (diff) | |
download | Rory-Open-Architecture-8f9b3d80a798469b9324430815022c7f929acf20.tar.xz |
Fix imports to include lib
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r-- | host/Rory-discordbots/configuration.nix | 2 | ||||
-rw-r--r-- | modules/base-server.nix | 3 | ||||
-rw-r--r-- | modules/base.nix | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/host/Rory-discordbots/configuration.nix b/host/Rory-discordbots/configuration.nix index 61c9d3a..0a8f731 100644 --- a/host/Rory-discordbots/configuration.nix +++ b/host/Rory-discordbots/configuration.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { imports = diff --git a/modules/base-server.nix b/modules/base-server.nix index 0e060e1..16dd45d 100644 --- a/modules/base-server.nix +++ b/modules/base-server.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { imports = @@ -6,6 +6,7 @@ ./base.nix ]; + # My servers always use /dev/sda as boot disk... boot = { loader = { grub = { diff --git a/modules/base.nix b/modules/base.nix index 69cb20e..3c09ab5 100644 --- a/modules/base.nix +++ b/modules/base.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, lib, ... }: { imports = |