17 lines
316 B
Nix
17 lines
316 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Enable scanning
|
|
hardware.sane = {
|
|
enable = true;
|
|
extraBackends = [ pkgs.sane-airscan ];
|
|
};
|
|
users.users.toast.extraGroups = [ "scanner" ];
|
|
|
|
# Set up fonts
|
|
fonts.fonts = [
|
|
( pkgs.nerdfonts.override { fonts = [ "Hack" "JetBrainsMono" ]; } )
|
|
];
|
|
|
|
boot.plymouth.enable = true;
|
|
}
|