user consolidation, add printer stuff, etc

This commit is contained in:
k3t
2026-06-15 03:56:05 -06:00
parent 37c285b64f
commit dedfaf4d1a
7 changed files with 102 additions and 26 deletions
+19 -1
View File
@@ -1,3 +1,21 @@
{pkgs, ...}:
{
services.printing.enable = true;
services.printing = {
enable = true;
drivers = with pkgs; [
cups-filters
cups-browsed
cups-bjnp
cups-pdf-to-pdf
gutenprint-bin
canon-cups-ufr2
];
};
hardware.sane = {
enable = true;
extraBackends = [ pkgs.sane-airscan pkgs.sane-pixma ];
};
services.udev.packages = [ pkgs.sane-airscan pkgs.sane-pixma ];
services.ipp-usb.enable=true;
}
+3 -2
View File
@@ -9,5 +9,6 @@
boot.loader.limine.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.extraModulePackages = [ ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
}
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" "v4l2loopback" "i915" "amdgpu" ];
boot.kernelModules = [ "v4l2loopback" ];
}
+1 -7
View File
@@ -1,9 +1,3 @@
{
users.users.k3t = {
description = "Kai Moore";
isNormalUser = true;
extraGroups = [ "audio" "video" "bluetooth" "wheel" "input" "networkmanager" ];
initialPassword = "password";
linger = true;
};
}
+9
View File
@@ -0,0 +1,9 @@
{
users.users.juliet = {
description = "Juliet";
isNormalUser = true;
extraGroups = [ "audio" "video" "bluetooth" "wheel" "input" "networkmanager" "scanner" "lp" ];
initialPassword = "password";
linger = true;
};
}
+9
View File
@@ -0,0 +1,9 @@
{
users.users.k3t = {
description = "Kai Moore";
isNormalUser = true;
extraGroups = [ "audio" "video" "bluetooth" "wheel" "input" "networkmanager" "scanner" "lp" ];
initialPassword = "password";
linger = true;
};
}