From 31773cda4c84f0545c4908958912284930e48068 Mon Sep 17 00:00:00 2001
From: Valentin Brandl <mail@vbrandl.net>
Date: Tue, 21 Jan 2025 20:07:34 +0100
Subject: [PATCH] Disable snapper

---
 machines/morpheus.nix | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/machines/morpheus.nix b/machines/morpheus.nix
index 6a491ab..ae6837d 100644
--- a/machines/morpheus.nix
+++ b/machines/morpheus.nix
@@ -38,12 +38,6 @@ inputs.nixpkgs.lib.nixosSystem {
         allowReboot = false;
       };
 
-      environment.systemPackages = with pkgs; [
-        # automatic btrfs snapshots
-        snapper
-        snapper-gui
-      ];
-
       networking = {
         hostName = hostname;
         interfaces.enp1s0.useDHCP = true;
@@ -53,14 +47,6 @@ inputs.nixpkgs.lib.nixosSystem {
         # enable touchpad support
         libinput.enable = true;
         blueman.enable = true;
-        snapper.configs = {
-          home = {
-            SUBVOLUME = "/home";
-            ALLOW_USERS = [ "me" ];
-            TIMELINE_CREATE = true;
-            TIMELINE_CLEANUP = true;
-          };
-        };
       };
       users.users.me = {
         isNormalUser = true;