Compare commits

..

No commits in common. "ce7808f1937520b2b78ab4c5b8b9ff1af2915abd" and "a5cf31c5b49b87c8b39b303f6cfa6ba1fd873227" have entirely different histories.

4 changed files with 12 additions and 10 deletions

View File

@ -110,6 +110,7 @@ in
nix-init nix-init
nixpkgs-fmt nixpkgs-fmt
nix-prefetch-git nix-prefetch-git
nodePackages.peerflix
nom nom
openems openems
openocd openocd

View File

@ -26,6 +26,7 @@ in
libva-utils libva-utils
nixpkgs-fmt nixpkgs-fmt
nix-prefetch-git nix-prefetch-git
nodePackages.peerflix
pandoc pandoc
paraview paraview
pass-wayland pass-wayland

View File

@ -110,6 +110,7 @@ in
nix-init nix-init
nixpkgs-fmt nixpkgs-fmt
nix-prefetch-git nix-prefetch-git
nodePackages.peerflix
nom nom
openems openems
openocd openocd

View File

@ -89,7 +89,7 @@ in
"amdgpu.sg_display=0" "amdgpu.sg_display=0"
"amdgpu.gttsize=2048" "amdgpu.gttsize=2048"
]; ];
kernelPackages = pkgs.linuxPackages_latest; kernelPackages = pkgs.linuxPackages_hardened;
kernel.sysctl = { kernel.sysctl = {
"net.core.default_qdisc" = "fq"; "net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr"; "net.ipv4.tcp_congestion_control" = "bbr";
@ -653,7 +653,7 @@ in
}; };
zramSwap = { zramSwap = {
enable = true; enable = false;
algorithm = "zstd"; algorithm = "zstd";
}; };
@ -661,15 +661,14 @@ in
isNormalUser = true; isNormalUser = true;
shell = pkgs.zsh; shell = pkgs.zsh;
extraGroups = [ extraGroups = [
"adbusers"
"audio"
"dialout"
"kvm"
"plugdev"
"sound"
"tty"
"wheel"
"wireshark" "wireshark"
"kvm"
"tty"
"audio"
"sound"
"adbusers"
"dialout"
"wheel"
]; ];
}; };
} }