diff --git a/nixos/configuration.nix b/nixos/configuration.nix index fd5c963..3adfe85 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -12,7 +12,7 @@ # You can also split up your configuration and import pieces of it here: # ./users.nix ./network.nix - ./i3.nix + # ./i3.nix # Import home-manager's NixOS module inputs.home-manager.nixosModules.home-manager diff --git a/nixos/i3.nix b/nixos/i3.nix index dd4e95f..48da632 100644 --- a/nixos/i3.nix +++ b/nixos/i3.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: { + environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw # Define the i3 window manager configuration services.xserver = { enable = true; @@ -23,7 +24,7 @@ ]; }; - # windowManager.default = "i3"; + windowManager.default = "i3"; layout = "us"; xkbVariant = ""; };