began configuring i3

This commit is contained in:
CDaut 2024-02-24 01:41:25 +01:00
parent d7934e2107
commit 41640f72ad
Signed by: clara
GPG key ID: 223391B52FAD4463
3 changed files with 50 additions and 10 deletions

View file

@ -7,7 +7,8 @@
];
imports =
[ # Include the results of the hardware scan.
[
# Include the results of the hardware scan.
./vm_hardware-configuration.nix
];
@ -41,20 +42,21 @@
# Configure keymap in X11
services.xserver = {
layout = "de";
xkbVariant = "";
xkb.layout = "de";
xkb.variant = "";
enable = true;
videoDrivers = [ "nvidia" ];
displayManager = {
defaultSession = "none+i3";
defaultSession = "none+i3";
};
windowManager.i3 = {
enable = true;
package = pkgs.i3-gaps;
extraPackages = with pkgs; [
dmenu
];
enable = true;
package = pkgs.i3-gaps;
extraPackages = with pkgs; [
dmenu
];
};
};
@ -68,7 +70,6 @@
description = "clemens";
initialPassword = "123456";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [];
};
# home manager