feat: add printer driver

This commit is contained in:
Jacob Bachmann 2024-01-08 17:22:24 +01:00
parent 610e399cff
commit 7692303804
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
3 changed files with 129 additions and 2 deletions

View file

@ -3,5 +3,13 @@
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
nixpkgs.overlays = [
(self: super: {
mfcl3750cdwlpr = (super.callPackage ../overlays/mfcl3750cdw.nix {}).driver;
mfcl3750cdwcupswrapper = (super.callPackage ../overlays/mfcl3750cdw.nix {}).cupswrapper;
})
];
system.stateVersion = "23.05";
}