fix(nixos): move specific packages to desktop
This commit is contained in:
parent
d1e5b4ed7b
commit
cfdb81ffdc
|
@ -50,7 +50,6 @@
|
||||||
## Tools
|
## Tools
|
||||||
# Utilities
|
# Utilities
|
||||||
bat
|
bat
|
||||||
btrfs-progs
|
|
||||||
duf
|
duf
|
||||||
fuseiso
|
fuseiso
|
||||||
lm_sensors
|
lm_sensors
|
||||||
|
@ -98,11 +97,5 @@
|
||||||
## Libraries
|
## Libraries
|
||||||
libsForQt5.qt5.qtgraphicaleffects
|
libsForQt5.qt5.qtgraphicaleffects
|
||||||
libsForQt5.qt5.qtquickcontrols2
|
libsForQt5.qt5.qtquickcontrols2
|
||||||
pkgsi686Linux.gperftools # Needed for TF2 rn :(
|
|
||||||
|
|
||||||
## Hardware specific
|
|
||||||
openrazer-daemon # Razor products back-end
|
|
||||||
polychromatic # and it's front-end
|
|
||||||
vial
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -138,4 +138,18 @@
|
||||||
|
|
||||||
# Enable WOL on my ethernet interface.
|
# Enable WOL on my ethernet interface.
|
||||||
networking.interfaces.enp5s0.wakeOnLan.enable = true;
|
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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue