Compare commits
No commits in common. "49ca0fa78bbc1e2e1be6531671621378c4485fe4" and "d1e5b4ed7bf0f052707c63b2a0da663d614dc61b" have entirely different histories.
49ca0fa78b
...
d1e5b4ed7b
|
@ -17,6 +17,7 @@
|
|||
|
||||
## Tools
|
||||
# Utilities
|
||||
brightnessctl
|
||||
fastfetch
|
||||
firefox
|
||||
pavucontrol
|
||||
|
|
|
@ -27,7 +27,4 @@
|
|||
nix.settings.trusted-public-keys = [
|
||||
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||
];
|
||||
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# Enable GPG.
|
||||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
|
@ -47,6 +50,7 @@
|
|||
## Tools
|
||||
# Utilities
|
||||
bat
|
||||
btrfs-progs
|
||||
duf
|
||||
fuseiso
|
||||
lm_sensors
|
||||
|
@ -94,5 +98,11 @@
|
|||
## 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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -138,18 +138,4 @@
|
|||
|
||||
# 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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
#
|
||||
|
@ -53,20 +53,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
#
|
||||
# PACKAGES #
|
||||
#
|
||||
|
||||
home.packages = with pkgs; [
|
||||
## Tools
|
||||
# Utilities
|
||||
brightnessctl
|
||||
];
|
||||
|
||||
#
|
||||
# MODULES #
|
||||
#
|
||||
|
||||
# Add monitor configuration to hyprland
|
||||
modules.hyprland.extraConfig = # hyprlang
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue