Changed so many things I don't even remember

This commit is contained in:
baduhai 2023-01-19 17:23:28 -03:00
parent e1f6679248
commit dd2c06dba5
6 changed files with 59 additions and 19 deletions

View file

@ -12,7 +12,8 @@
wireplumber.enable = true;
};
xserver = {
enable = true;
enable = false;
autorun = false;
layout = "us";
xkbVariant = "altgr-intl";
excludePackages = ( with pkgs; [ xterm ]);
@ -20,21 +21,36 @@
enable = true;
excludePackages = ( with pkgs.plasma5Packages; [ elisa oxygen khelpcenter ]);
};
displayManager = {
defaultSession = "plasmawayland";
sddm = {
enable = true;
autoNumlock = true;
settings = {
Theme = {
CursorTheme = "breeze_cursors";
};
X11 = {
UserAuthFile = ".local/share/sddm/Xauthority";
};
};
};
# displayManager = {
# defaultSession = "plasmawayland";
# sddm = {
# enable = true;
# autoNumlock = true;
# settings = {
# Theme = {
# CursorTheme = "breeze_cursors";
# };
# X11 = {
# UserAuthFile = ".local/share/sddm/Xauthority";
# };
# };
# };
# };
};
greetd = {
enable = true;
settings = {
default_session.command = "${pkgs.greetd.tuigreet}/bin/tuigreet --remember --asterisks --time --greeting \"Welcome to Nix\" --cmd ${pkgs.plasma-workspace}/bin/startplasma-wayland";
# initial_session = {
# command = "${pkgs.plasma-workspace}/bin/startplasma-wayland";
# user = "user";
# };
};
};
};
environment.etc."greetd/environments".text = ''
startplasma-wayland
fish
'';
}