This commit is contained in:
Mans Ziesel 2023-06-06 19:25:40 +02:00
parent c4516d8152
commit f1b1d5cc0e
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@
# You can also split up your configuration and import pieces of it here: # You can also split up your configuration and import pieces of it here:
# ./users.nix # ./users.nix
./network.nix ./network.nix
./i3.nix # ./i3.nix
# Import home-manager's NixOS module # Import home-manager's NixOS module
inputs.home-manager.nixosModules.home-manager inputs.home-manager.nixosModules.home-manager

View File

@ -1,6 +1,7 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
# Define the i3 window manager configuration # Define the i3 window manager configuration
services.xserver = { services.xserver = {
enable = true; enable = true;
@ -23,7 +24,7 @@
]; ];
}; };
# windowManager.default = "i3"; windowManager.default = "i3";
layout = "us"; layout = "us";
xkbVariant = ""; xkbVariant = "";
}; };