fix(nixos): move specific packages to desktop

This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 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

@ -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
];
}