Disable snapper

This commit is contained in:
Valentin Brandl 2025-01-21 20:07:34 +01:00
parent 9faf6d9c89
commit 31773cda4c
Signed by: vbrandl
GPG Key ID: 7FB009175885FC76

View File

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