dm fixes
This commit is contained in:
parent
4e3cbae0d7
commit
94a1dc2b54
|
@ -33,6 +33,9 @@ imports =
|
||||||
nerdfonts
|
nerdfonts
|
||||||
ubuntu_font_family
|
ubuntu_font_family
|
||||||
|
|
||||||
|
|
||||||
|
where-is-my-sddm-theme
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
|
@ -42,9 +45,12 @@ imports =
|
||||||
|
|
||||||
services.displayManager = {
|
services.displayManager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
sessionPackages = with pkgs; [ sway ];
|
||||||
sddm = {
|
sddm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
theme = "${pkgs.where-is-my-sddm-theme}";
|
||||||
wayland.enable = true;
|
wayland.enable = true;
|
||||||
|
wayland.compositor = "kwin";
|
||||||
autoNumlock = true;
|
autoNumlock = true;
|
||||||
enableHidpi = true;
|
enableHidpi = true;
|
||||||
};
|
};
|
||||||
|
@ -57,14 +63,9 @@ imports =
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver.xkb = {
|
services.xserver.xkb = {
|
||||||
layout = "no";
|
layout = "us,no";
|
||||||
variant = "";
|
variant = ",";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#TODO: add sway with home manager to get proper dotfiles. Possibly in its own sway file.
|
|
||||||
#TODO: add hyperland.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,15 +69,5 @@ imports =
|
||||||
|
|
||||||
qt.platformTheme = "qt5ct";
|
qt.platformTheme = "qt5ct";
|
||||||
|
|
||||||
# Configure keymap in X11
|
|
||||||
services.xserver = {
|
|
||||||
layout = "no";
|
|
||||||
xkbVariant = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
#TODO: add sway config with home manager to get proper dotfiles.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue