nix/host/home/default.nix

14 lines
263 B
Nix
Raw Normal View History

2024-06-14 03:22:51 +03:00
{ lib, ... }: {
imports = [
./Backup.nix
2024-06-13 17:00:05 +03:00
./Container.nix
2024-03-29 09:05:08 +03:00
./Filesystem.nix
./Network.nix
./Photoprocess.nix
];
2024-06-14 03:22:51 +03:00
# Disable auto-switch.
systemd.services.autoupdate.enable = lib.mkForce false;
systemd.timers.autoupdate.enable = lib.mkForce false;
}