From f1b1d5cc0ea11bad240998a7482c383b4f0feceb Mon Sep 17 00:00:00 2001 From: Mans Ziesel Date: Tue, 6 Jun 2023 19:25:40 +0200 Subject: [PATCH] i3 test --- nixos/configuration.nix | 2 +- nixos/i3.nix | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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 = ""; };