properly reformat all files

This commit is contained in:
2025-05-03 09:25:00 +02:00
parent 635ef052e7
commit 5948c1db1c
18 changed files with 324 additions and 287 deletions

View File

@ -9,9 +9,12 @@
];
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
};
nix.gc = {
automatic = true;
@ -19,16 +22,16 @@
options = "--delete-older-than 7d";
};
nixpkgs.config = {
allowUnfreePredicate =
pkg:
builtins.elem (pkgs.lib.getName pkg) [
"nvidia-settings"
"nvidia-x11"
"nordvpn"
"hplip"
];
};
nixpkgs.config = {
allowUnfreePredicate =
pkg:
builtins.elem (pkgs.lib.getName pkg) [
"nvidia-settings"
"nvidia-x11"
"nordvpn"
"hplip"
];
};
swapDevices = [
{

View File

@ -9,12 +9,12 @@
../../modules/nixos/greetd.nix
../../modules/nixos/audio.nix
# Apps + services
../../modules/nixos/nordvpn.nix
# Apps + services
../../modules/nixos/nordvpn.nix
];
modules.bluetooth.enable = true;
modules.nordvpn.enable = true;
modules.nordvpn.enable = true;
modules.nvidia.enable = true;
modules.audio.enable = true;
modules.fingerprint-fix = {
@ -38,7 +38,7 @@
};
udev.extraRules = ''
SUBSYSTEM=="backlight", KERNEL=="intel_backlight", MODE="0666", RUN+="${pkgs.coreutils}/bin/chmod a+w /sys/class/backlight/%k/brightness"
SUBSYSTEM=="backlight", KERNEL=="intel_backlight", MODE="0666", RUN+="${pkgs.coreutils}/bin/chmod a+w /sys/class/backlight/%k/brightness"
'';
};