summaryrefslogtreecommitdiff
path: root/nixosConfigurations
diff options
context:
space:
mode:
authorAzat Bahawi <azat@bahawi.net>2023-11-16 02:16:22 +0300
committerAzat Bahawi <azat@bahawi.net>2023-11-16 02:16:22 +0300
commit576d4d672d37e490bd5f8dfb4397909600ed68db (patch)
tree77cc6edfea50f24048f69bf2c54bc6d6f2117e01 /nixosConfigurations
parent1b39cfb14b608f374208a9483db661ccd1a43230 (diff)
2023-11-16
Diffstat (limited to 'nixosConfigurations')
-rw-r--r--nixosConfigurations/default.nix10
-rw-r--r--nixosConfigurations/test-headful/default.nix4
2 files changed, 6 insertions, 8 deletions
diff --git a/nixosConfigurations/default.nix b/nixosConfigurations/default.nix
index 2fa32f9..b2e1511 100644
--- a/nixosConfigurations/default.nix
+++ b/nixosConfigurations/default.nix
@@ -1,8 +1,5 @@
-{
- inputs,
- lib,
-}:
-with lib; let
+inputs:
+with inputs.self.lib; let
mkConfiguration = name: {
modules ? [],
configuration ? ./${name},
@@ -21,7 +18,8 @@ with lib; let
++ optional (configuration != null) (import configuration);
specialArgs =
{
- inherit inputs lib this;
+ inherit inputs this;
+ inherit (inputs.self) lib;
}
// extraSpecialArgs;
});
diff --git a/nixosConfigurations/test-headful/default.nix b/nixosConfigurations/test-headful/default.nix
index 25db8c7..a385a2e 100644
--- a/nixosConfigurations/test-headful/default.nix
+++ b/nixosConfigurations/test-headful/default.nix
@@ -1,8 +1,8 @@
{lib, ...}:
with lib; {
nixfiles.modules = {
- dwm.enable = true;
- kde.enable = false;
+ dwm.enable = false;
+ kde.enable = true;
xmonad.enable = false;
};