Compare commits

...

4 Commits

4 changed files with 8 additions and 10 deletions

View File

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

View File

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

View File

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

View File

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