From 0ff41dc2a911e0c11954b2eb738ec57c7ff27993 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Fri, 29 Aug 2025 21:29:19 +0200 Subject: [PATCH] Thor: cleanup --- instances/thor/configuration.nix | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/instances/thor/configuration.nix b/instances/thor/configuration.nix index 9fbe6d4..1b1fa97 100644 --- a/instances/thor/configuration.nix +++ b/instances/thor/configuration.nix @@ -233,19 +233,17 @@ }; power-profiles-daemon.enable = true; smartd.enable = true; - snapper = { - configs = - let - common = { - ALLOW_USERS = [ "bertof" ]; - TIMELINE_CLEANUP = true; - TIMELINE_CREATE = true; - }; - in - { - bertof_home = lib.recursiveUpdate common { SUBVOLUME = "/home/bertof"; }; + snapper.configs = + let + common = { + ALLOW_USERS = [ "bertof" ]; + TIMELINE_CLEANUP = true; + TIMELINE_CREATE = true; }; - }; + in + { + bertof_home = lib.recursiveUpdate common { SUBVOLUME = "/home/bertof"; }; + }; thermald.enable = true; desktopManager = { # lomiri.enable = true; @@ -291,7 +289,7 @@ }; virtualisation = { - docker = { enable = true; }; + # docker = { enable = true; }; kvmgt.enable = true; libvirtd.enable = true; podman.enable = true;