mass reformat

This commit is contained in:
notgne2 2022-10-03 17:08:32 -07:00
parent ed1c53e94c
commit 9cb456ad60
No known key found for this signature in database
GPG key ID: 5CE0A245A2DAC84A
25 changed files with 1216 additions and 1043 deletions

View file

@ -1,17 +1,23 @@
{ config, lib, pkgs, ... }:
with lib;
let
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.fuckingprint;
fixPlatforms = p:
p.overrideAttrs (super:
super // {
meta = super.meta // {
platforms = super.meta.platforms ++ [ "x86_64-linux" ];
};
super
// {
meta =
super.meta
// {
platforms = super.meta.platforms ++ ["x86_64-linux"];
};
});
in
{
in {
options.fuckingprint.enable = mkEnableOption "Make my fucking printer work";
config = mkIf cfg.enable {
@ -101,6 +107,6 @@ in
hplipWithPlugin
];
};
services.udev.packages = [ pkgs.utsushi ];
services.udev.packages = [pkgs.utsushi];
};
}