This commit is contained in:
Tao Tien 2024-03-29 12:51:49 -07:00
parent a85f11e974
commit cad62788ce
6 changed files with 36 additions and 22 deletions

View file

@ -107,18 +107,6 @@
};
};
services.snapper.configs = {
home = {
SUBVOLUME = "/home";
ALLOW_USERS = ["tao"];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
TIMELINE_LIMIT_HOURLY = "5";
TIMELINE_LIMIT_DAILY = "7";
};
};
services.snapper.snapshotInterval = "*:0/5";
hardware.keyboard.qmk.enable = true;
services.udev.extraRules = ''
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", MODE="0660", GROUP="users", TAG+="uaccess", TAG+="udev-acl"

View file

@ -9,6 +9,7 @@
yt-dlp
zoom-us
];
programs.kdeconnect.enable = true;
fonts.packages = with pkgs; [
noto-fonts-cjk
@ -17,6 +18,6 @@
users.users.vy = {
isNormalUser = true;
extraGroups = ["audio" "video"];
extraGroups = ["wheel" "audio" "video"];
};
}