Compare commits

...

3 commits

5 changed files with 33 additions and 13 deletions

View file

@ -17,7 +17,6 @@
## Tools ## Tools
# Utilities # Utilities
brightnessctl
fastfetch fastfetch
firefox firefox
pavucontrol pavucontrol

View file

@ -27,4 +27,7 @@
nix.settings.trusted-public-keys = [ nix.settings.trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
]; ];
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
} }

View file

@ -1,9 +1,6 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Enable GPG. # Enable GPG.
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
@ -50,7 +47,6 @@
## Tools ## Tools
# Utilities # Utilities
bat bat
btrfs-progs
duf duf
fuseiso fuseiso
lm_sensors lm_sensors
@ -98,11 +94,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
]; ];
} }

View file

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

View file

@ -1,4 +1,4 @@
{ ... }: { pkgs, ... }:
{ {
# #
@ -53,6 +53,20 @@
}; };
}; };
#
# PACKAGES #
#
home.packages = with pkgs; [
## Tools
# Utilities
brightnessctl
];
#
# MODULES #
#
# Add monitor configuration to hyprland # Add monitor configuration to hyprland
modules.hyprland.extraConfig = # hyprlang modules.hyprland.extraConfig = # hyprlang
'' ''