1
Fork 0

surely this will work

This commit is contained in:
caem 2025-01-23 01:42:41 +01:00
parent 86494ef71a
commit 2d2be6b50c
Signed by: caem
GPG key ID: 69A830D03203405F
3 changed files with 18 additions and 1 deletions

View file

@ -17,6 +17,7 @@
specialArgs = { specialArgs = {
inherit inputs; inherit inputs;
inherit lib; inherit lib;
username = user;
}; };
}; };
}) (lib.getDirsInDir ../hosts)); }) (lib.getDirsInDir ../hosts));

View file

@ -0,0 +1,8 @@
{ ... }:
{
/* https://files.catbox.moe/s5diss.mp4 */
systemd.extraConfig = ''
DefaultTimeoutStopSpec=5s
'';
}

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, username, ... }:
{ {
services.xserver = { services.xserver = {
@ -40,4 +40,12 @@
just-perfection just-perfection
quick-settings-tweaker quick-settings-tweaker
]); ]);
environment.persistence."/nix/persist" = {
users."${username}" = {
directories = [
".config/dconf"
];
};
};
} }