began configuring i3
This commit is contained in:
parent
d7934e2107
commit
41640f72ad
3 changed files with 50 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue