[NixOS] Enable accounts daemon in plasma
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ pkgs, config, lib, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./essential.nix
|
||||
@@ -36,7 +36,7 @@
|
||||
'';
|
||||
};
|
||||
};
|
||||
nix = rec {
|
||||
nix = {
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
||||
@@ -1,7 +1,17 @@
|
||||
{ pkgs, config, makeEnable, ... }:
|
||||
makeEnable config "myModules.plasma" true {
|
||||
services.accounts-daemon.enable = true;
|
||||
services.displayManager.sddm = {
|
||||
enable = true;
|
||||
settings = {
|
||||
Users = {
|
||||
# Show a maximum number of users
|
||||
MaximumUid = 60000;
|
||||
MinimumUid = 1000;
|
||||
# Enable user icons
|
||||
RememberLastUser = true;
|
||||
};
|
||||
};
|
||||
extraPackages = with pkgs; [
|
||||
# sddm-astronaut
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user