fix(nixos): move specific packages to desktop

This commit is contained in:
Alexandre Cavalheiro 2024-09-19 00:50:56 -03:00
parent d1e5b4ed7b
commit cfdb81ffdc
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
2 changed files with 15 additions and 8 deletions

View file

@ -50,7 +50,6 @@
## Tools
# Utilities
bat
btrfs-progs
duf
fuseiso
lm_sensors
@ -98,11 +97,5 @@
## Libraries
libsForQt5.qt5.qtgraphicaleffects
libsForQt5.qt5.qtquickcontrols2
pkgsi686Linux.gperftools # Needed for TF2 rn :(
## Hardware specific
openrazer-daemon # Razor products back-end
polychromatic # and it's front-end
vial
];
}

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
imports = [
@ -138,4 +138,18 @@
# Enable WOL on my ethernet interface.
networking.interfaces.enp5s0.wakeOnLan.enable = true;
#
# PACKAGES #
#
environment.systemPackages = with pkgs; [
## Tools
# Utilities
btrfs-progs
## Hardware specific
openrazer-daemon # Razor products back-end
polychromatic # and it's front-end
vial
];
}