Skip to content

Commit

Permalink
remove defaultSession
Browse files Browse the repository at this point in the history
  • Loading branch information
number5 committed Jun 5, 2024
1 parent 934c21e commit 1cc4b05
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions nixos/configurations/chestnut/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
journald.extraConfig = "SystemMaxUse=1G";

displayManager = {
defaultSession = "none+i3";
# defaultSession = "none+i3";
sddm.autoNumlock = true;

autoLogin = {
Expand All @@ -74,19 +74,19 @@
};
};

xserver = {
enable = true;
xkb = {
layout = "us";
options = "caps:escape"; # Caps-lock is the new Escape.
};
videoDrivers = ["amdgpu"];

windowManager.i3 = {
enable = true;
package = pkgs.i3;
};
};
# xserver = {
# enable = true;
# xkb = {
# layout = "us";
# options = "caps:escape"; # Caps-lock is the new Escape.
# };
# videoDrivers = ["amdgpu"];
#
# windowManager.i3 = {
# enable = true;
# package = pkgs.i3;
# };
# };
};
console = {
font = "${pkgs.terminus_font}/share/consolefonts/ter-u32n.psf.gz";
Expand Down

0 comments on commit 1cc4b05

Please sign in to comment.