mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
21 lines
487 B
Nix
21 lines
487 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkForce;
|
|
in {
|
|
security.pam.loginLimits = [
|
|
{ domain = "*"; type = "soft"; item = "nofile"; value = "65536"; }
|
|
{ domain = "*"; type = "hard"; item = "nofile"; value = "1048576"; }
|
|
];
|
|
services.noctalia-shell.enable = true;
|
|
programs.regreet = {
|
|
enable = true;
|
|
theme = mkForce config.home-manager.users.kat.gtk.theme;
|
|
};
|
|
stylix.targets.regreet.enable = true;
|
|
services.greetd = {
|
|
enable = true;
|
|
};
|
|
}
|