scanner support?

This commit is contained in:
Tao Tien 2023-08-09 19:05:53 -07:00
parent e3e76ce8a1
commit 0889e2a0bd
4 changed files with 22 additions and 6 deletions

View file

@ -45,6 +45,6 @@
users.users.tao = {
isNormalUser = true;
extraGroups = [ "wheel" "libvirtd" "dialout" ];
extraGroups = [ "wheel" "libvirtd" "dialout" "scanner" "lp" ];
};
}

11
users/vy.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
users.users.vy.packages = with pkgs; [
];
users.users.vy = {
isNormalUser = true;
extraGroups = [ "scanner" "lp" ];
};
}