Formatting.

This commit is contained in:
CronyAkatsuki 2024-02-27 20:16:16 +01:00
parent b97fb04d64
commit dc8472fda4

View File

@ -2,14 +2,13 @@
{ {
# Imports # Imports
imports = imports = [
[ ./hardware-configuration.nix
./hardware-configuration.nix ./modules/wifi-dongle.nix
./modules/wifi-dongle.nix ./modules/disable-hibernation.nix
./modules/disable-hibernation.nix ./modules/dns-over-https.nix
./modules/dns-over-https.nix ./modules/nvidia.nix
./modules/nvidia.nix ];
];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
@ -68,11 +67,7 @@
enable = true; enable = true;
theme = "catppuccin-sddm-corners"; theme = "catppuccin-sddm-corners";
# Fix keyboard showing up unnecesarilly # Fix keyboard showing up unnecesarilly
settings = { settings = { General = { InputMethod = ""; }; };
General = {
InputMethod="";
};
};
}; };
# Setup plasma with excluding a couple unnecesarry packages # Setup plasma with excluding a couple unnecesarry packages
@ -145,23 +140,26 @@
ryzenadj ryzenadj
wineWowPackages.staging wineWowPackages.staging
lutris lutris
(catppuccin-kde.override { winDecStyles = ["classic" "modern"] ;}) (catppuccin-kde.override { winDecStyles = [ "classic" "modern" ]; })
catppuccin-sddm-corners catppuccin-sddm-corners
]; ];
# Wireguard settings # Wireguard settings
networking.firewall = { networking.firewall = {
# if packets are still dropped, they will show up in dmesg enable = true;
logReversePathDrops = true; # allow specific tcp ports
# wireguard trips rpfilter up allowedTCPPorts = [ 2234 ];
extraCommands = '' # if packets are still dropped, they will show up in dmesg
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN logReversePathDrops = true;
ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN # wireguard trips rpfilter up
''; extraCommands = ''
extraStopCommands = '' ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN || true ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN || true '';
''; extraStopCommands = ''
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --sport 51820 -j RETURN || true
ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --dport 51820 -j RETURN || true
'';
}; };
# Enable fstrim # Enable fstrim
@ -190,7 +188,8 @@
users.users.crony = { users.users.crony = {
isNormalUser = true; isNormalUser = true;
description = "Crony"; description = "Crony";
extraGroups = [ "networkmanager" "wheel" "video" "input" "audio" "libvirtd" ]; extraGroups =
[ "networkmanager" "wheel" "video" "input" "audio" "libvirtd" ];
shell = pkgs.zsh; shell = pkgs.zsh;
}; };
@ -203,8 +202,8 @@
interpreter = "${pkgs.appimage-run}/bin/appimage-run"; interpreter = "${pkgs.appimage-run}/bin/appimage-run";
recognitionType = "magic"; recognitionType = "magic";
offset = 0; offset = 0;
mask = ''\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff''; mask = "\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\xff\\xff\\xff";
magicOrExtension = ''\x7fELF....AI\x02''; magicOrExtension = "\\x7fELF....AI\\x02";
}; };
# Automatic cleanup and optimization # Automatic cleanup and optimization
@ -221,12 +220,11 @@
description = "Set my ryzen cpu power."; description = "Set my ryzen cpu power.";
serviceConfig = { serviceConfig = {
Type = "oneshot"; Type = "oneshot";
ExecStart = toString ( ExecStart = toString (pkgs.writeShellScript "ryzenadj-setup" ''
pkgs.writeShellScript "ryzenadj-setup" '' ${pkgs.ryzenadj}/bin/ryzenadj --stapm-limit 35000 --fast-limit 35000 --slow-limit 35000 --slow-time 60 --stapm-time 1000 --tctl-temp 75 --vrmmax-current 65000
${pkgs.ryzenadj}/bin/ryzenadj --stapm-limit 35000 --fast-limit 35000 --slow-limit 35000 --slow-time 60 --stapm-time 1000 --tctl-temp 75 --vrmmax-current 65000 '');
'');
}; };
wantedBy = ["default.target"]; wantedBy = [ "default.target" ];
}; };
# Esync # Esync