move some graphics stuff into individual modules/files

This commit is contained in:
Schrottkatze 2024-08-01 08:37:19 +02:00
parent b63db1934d
commit ddd6ecd055
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc
9 changed files with 31 additions and 16 deletions

View file

@ -6,9 +6,11 @@
./hardware-configuration.nix
../../common.nix
../../modules
./modules
];
jade = {
hwKey.pamAuth.enable = true;
desktop = {
syncthing.enable = true;
kdeconnect.enable = true;
@ -57,9 +59,6 @@
# TODO: clean up.
zenstates
zenmonitor
nvtop-amd
radeontop
rgp
tea
blender-hip
];

View file

@ -0,0 +1,5 @@
{}: {
imports = [
./graphics.nix
];
}

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
environment.systemPackages = [
pkgs.nvtop-amd
pkgs.radeontop
pkgs.rgp
];
}