mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Compare commits
3 commits
904b64c6f4
...
c916fd31b4
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | c916fd31b4 | ||
ItsDrike | bb1915e3dd | ||
ItsDrike | 8dd2a143ac |
|
@ -83,7 +83,7 @@
|
|||
device = {
|
||||
roles = {
|
||||
type = "laptop";
|
||||
virtual-machine = false;
|
||||
virtual-machine = false;
|
||||
};
|
||||
cpu.type = "amd";
|
||||
gpu.type = "amd";
|
||||
|
@ -93,12 +93,15 @@
|
|||
security = {
|
||||
auditd = {
|
||||
enable = true;
|
||||
autoPrune.enable = true;
|
||||
autoPrune.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
workstation = {
|
||||
printing.enable = true;
|
||||
printing = {
|
||||
enable = true;
|
||||
hplip.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
|
@ -107,18 +110,18 @@
|
|||
|
||||
git = {
|
||||
userName = "ItsDrike";
|
||||
userEmail = "itsdrike@protonmail.com";
|
||||
signing = {
|
||||
enable = true;
|
||||
userEmail = "itsdrike@protonmail.com";
|
||||
signing = {
|
||||
enable = true;
|
||||
key = "FA2745890B7048C0";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
wms.hyprland = {
|
||||
enable = true;
|
||||
monitor = [
|
||||
"eDP-1, 1920x1080@60, 0x0, 1"
|
||||
];
|
||||
monitor = [
|
||||
"eDP-1, 1920x1080@60, 0x0, 1"
|
||||
];
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
|
@ -11,6 +11,10 @@ in
|
|||
|
||||
Also adds some drivers for common printers.
|
||||
'';
|
||||
|
||||
hplip.enable = mkEnableOption ''
|
||||
HP printing support using hplip software.
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ pkgs, lib, config, ...}: let
|
||||
inherit (lib) mkIf;
|
||||
inherit (lib) mkIf optional;
|
||||
deviceType = config.myOptions.device.roles.type;
|
||||
acceptedTypes = ["laptop" "desktop"];
|
||||
|
||||
|
@ -26,5 +26,8 @@ in {
|
|||
openFirewall = true;
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = optional cfg.hplip.enable pkgs.hplip;
|
||||
myOptions.system.impermanence.home.extraDirectories = optional cfg.hplip.enable ".hplip";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue