Format project using nixfmt rfc candidate.

This commit is contained in:
Kevin Baensch 2024-11-20 20:32:38 +01:00
parent 1f63817684
commit a9f7fe416f
Signed by: derped
GPG key ID: C0F1D326C7626543
91 changed files with 1347 additions and 1000 deletions

View file

@ -5,11 +5,16 @@
...
}:
with lib;
mkIf (elem "cups" config.machine.services) {
services.printing = {
enable = true;
browsed.enable = false;
startWhenNeeded = true;
drivers = with pkgs; [gutenprint hplip splix samsung-unified-linux-driver];
};
}
mkIf (elem "cups" config.machine.services) {
services.printing = {
enable = true;
browsed.enable = false;
startWhenNeeded = true;
drivers = with pkgs; [
gutenprint
hplip
splix
samsung-unified-linux-driver
];
};
}