Set GDDM as Ludwig login manager
This commit is contained in:
parent
a1a5d9a90c
commit
42bf9fba59
3 changed files with 3 additions and 9 deletions
|
@ -3,10 +3,6 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
heliox-cli,
|
||||
...
|
||||
}: {
|
||||
# You can import other NixOS modules here
|
||||
|
@ -41,7 +37,6 @@
|
|||
../common/optional/udisks.nix
|
||||
];
|
||||
|
||||
|
||||
nixpkgs = {
|
||||
# You can add overlays here
|
||||
overlays = [
|
||||
|
@ -73,6 +68,8 @@
|
|||
services.udev.packages = [inputs.heliox-cli.packages.x86_64-linux.default];
|
||||
environment.systemPackages = [inputs.heliox-cli.packages.x86_64-linux.default];
|
||||
|
||||
displayManager.sddm.enable = true;
|
||||
|
||||
# Force disable Nvidia PRIME, needed by nix-hardware
|
||||
hardware.nvidia.prime.offload.enable = false;
|
||||
|
||||
|
|
|
@ -13,8 +13,4 @@
|
|||
environment.profileRelativeSessionVariables = {
|
||||
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
displayManager.sddm.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
|
||||
networking.hostName = "ludwig";
|
||||
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
programs = {
|
||||
adb.enable = true;
|
||||
dconf.enable = true;
|
||||
|
|
Loading…
Reference in a new issue