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;