aboutsummaryrefslogtreecommitdiff
path: root/nixos/spec.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/spec.nix')
-rw-r--r--nixos/spec.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/spec.nix b/nixos/spec.nix
index 77ac310..504eee2 100644
--- a/nixos/spec.nix
+++ b/nixos/spec.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, lib, ... }: {
+{ pkgs, lib, ... }: {
specialisation = {
wayland = {
configuration = {
@@ -16,9 +16,9 @@
services.xserver.displayManager.startx.enable = true;
}
(import ./dwm {
- inherit config;
+ #inherit config;
inherit pkgs;
- inherit lib;
+ #inherit lib;
});
};
};