surely this will work
This commit is contained in:
parent
86494ef71a
commit
2d2be6b50c
3 changed files with 18 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit lib;
|
inherit lib;
|
||||||
|
username = user;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}) (lib.getDirsInDir ../hosts));
|
}) (lib.getDirsInDir ../hosts));
|
||||||
|
|
8
modules/nixos/core/systemd.nix
Normal file
8
modules/nixos/core/systemd.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
/* https://files.catbox.moe/s5diss.mp4 */
|
||||||
|
systemd.extraConfig = ''
|
||||||
|
DefaultTimeoutStopSpec=5s
|
||||||
|
'';
|
||||||
|
}
|
|
@ -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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue