Compare commits
3 commits
d1e5b4ed7b
...
49ca0fa78b
Author | SHA1 | Date | |
---|---|---|---|
Alexandre Cavalheiro | 49ca0fa78b | ||
Alexandre Cavalheiro | 96b1425736 | ||
Alexandre Cavalheiro | cfdb81ffdc |
|
@ -17,7 +17,6 @@
|
||||||
|
|
||||||
## Tools
|
## Tools
|
||||||
# Utilities
|
# Utilities
|
||||||
brightnessctl
|
|
||||||
fastfetch
|
fastfetch
|
||||||
firefox
|
firefox
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
''
|
''
|
||||||
|
|
Loading…
Reference in a new issue