treewide: move hardware into modules
This commit is contained in:
parent
7d1baf7eb5
commit
07a9c5f510
14 changed files with 123 additions and 90 deletions
|
@ -2,9 +2,6 @@
|
|||
imports = [
|
||||
./nix
|
||||
|
||||
./hardware/printing.nix
|
||||
./hardware/fwupd.nix
|
||||
|
||||
./network
|
||||
|
||||
./programs
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
services.fprintd.enable = true;
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
services.fwupd.enable = true;
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services.udev.packages = [
|
||||
inputs.self.packages.${pkgs.system}.mcuxpresso
|
||||
];
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
services = {
|
||||
# setup printing service
|
||||
printing.enable = true;
|
||||
|
||||
avahi = {
|
||||
enable = true;
|
||||
nssmdns4 = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
|
||||
printing.drivers = [
|
||||
pkgs.gutenprint
|
||||
pkgs.hplip
|
||||
];
|
||||
udev.packages = [
|
||||
pkgs.sane-airscan
|
||||
pkgs.utsushi
|
||||
];
|
||||
};
|
||||
|
||||
hardware.sane.enable = true; # enables support for SANE scanners
|
||||
hardware.sane.extraBackends = [
|
||||
pkgs.sane-airscan # generic
|
||||
pkgs.hplip # HP
|
||||
pkgs.utsushi # other printers
|
||||
];
|
||||
}
|
|
@ -1,37 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
hardware.uni-sync = {
|
||||
enable = true;
|
||||
devices = [
|
||||
{
|
||||
device_id = "VID:3314/PID:41218/SN:6243168001";
|
||||
sync_rgb = true;
|
||||
channels = [
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
systemd.services.uni-sync = {
|
||||
enable = true;
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.uni-sync}/bin/uni-sync";
|
||||
};
|
||||
wantedBy = ["multi-user.target"];
|
||||
};
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
via
|
||||
];
|
||||
services.udev.packages = [pkgs.via];
|
||||
}
|
|
@ -1,5 +1,7 @@
|
|||
{lib, ...}: {
|
||||
imports = [
|
||||
./hardware
|
||||
|
||||
./boot.nix
|
||||
./home-manager.nix
|
||||
./locales.nix
|
||||
|
|
9
modules/nix/core/hardware/default.nix
Normal file
9
modules/nix/core/hardware/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
imports = [
|
||||
./fprintd.nix
|
||||
./fwupd.nix
|
||||
./printing.nix
|
||||
./uni-sync.nix
|
||||
./via.nix
|
||||
];
|
||||
}
|
9
modules/nix/core/hardware/fprintd.nix
Normal file
9
modules/nix/core/hardware/fprintd.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.local.profiles.laptop.enable {
|
||||
services.fprintd.enable = true;
|
||||
};
|
||||
}
|
9
modules/nix/core/hardware/fwupd.nix
Normal file
9
modules/nix/core/hardware/fwupd.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.local.profiles.desktop.enable {
|
||||
services.fwupd.enable = true;
|
||||
};
|
||||
}
|
36
modules/nix/core/hardware/printing.nix
Normal file
36
modules/nix/core/hardware/printing.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.local.profiles.desktop.enable {
|
||||
services = {
|
||||
# setup printing service
|
||||
printing.enable = true;
|
||||
|
||||
avahi = {
|
||||
enable = true;
|
||||
nssmdns4 = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
|
||||
printing.drivers = [
|
||||
pkgs.gutenprint
|
||||
pkgs.hplip
|
||||
];
|
||||
|
||||
udev.packages = [
|
||||
pkgs.sane-airscan
|
||||
pkgs.utsushi
|
||||
];
|
||||
};
|
||||
|
||||
hardware.sane.enable = true; # enables support for SANE scanners
|
||||
hardware.sane.extraBackends = [
|
||||
pkgs.sane-airscan # generic
|
||||
pkgs.hplip # HP
|
||||
pkgs.utsushi # other printers
|
||||
];
|
||||
};
|
||||
}
|
44
modules/nix/core/hardware/uni-sync.nix
Normal file
44
modules/nix/core/hardware/uni-sync.nix
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.local.profiles.gaming.enable {
|
||||
hardware.uni-sync = {
|
||||
enable = true;
|
||||
devices = [
|
||||
{
|
||||
device_id = "VID:3314/PID:41218/SN:6243168001";
|
||||
sync_rgb = true;
|
||||
channels = [
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
{
|
||||
mode = "Manual";
|
||||
speed = 60;
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
systemd.services.uni-sync = {
|
||||
enable = true;
|
||||
serviceConfig = {
|
||||
ExecStart = "${pkgs.uni-sync}/bin/uni-sync";
|
||||
};
|
||||
wantedBy = ["multi-user.target"];
|
||||
};
|
||||
};
|
||||
}
|
14
modules/nix/core/hardware/via.nix
Normal file
14
modules/nix/core/hardware/via.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
config = lib.mkIf config.local.profiles.gaming.enable {
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
via
|
||||
];
|
||||
services.udev.packages = [pkgs.via];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue