This commit is contained in:
Julian Sutter 2025-07-22 23:43:28 -07:00
parent 153134503d
commit e8e3ee0b8b
6 changed files with 25 additions and 10 deletions

View file

@ -6,5 +6,6 @@ environment.systemPackages = with pkgs; [
feather feather
electrum electrum
kdePackages.kleopatra kdePackages.kleopatra
tor-browser
]; ];
} }

View file

@ -36,4 +36,9 @@
Ctrl+Alt+Delete=Lock Session,none,Lock the session Ctrl+Alt+Delete=Lock Session,none,Lock the session
''; '';
# Enable crashdump services for debugging
services.kdump.enable = true;
services.kdump.extraCrashkernel = "1G";
} }

18
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1752603129, "lastModified": 1753181343,
"narHash": "sha256-S+wmHhwNQ5Ru689L2Gu8n1OD6s9eU9n9mD827JNR+kw=", "narHash": "sha256-CLQfNtUqirNVSYoW/kYbvL4PeeNasmZonaPnjO3+1YQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e8c19a3cec2814c754f031ab3ae7316b64da085b", "rev": "0cdfcdbb525b77b951c889b6131047bc374f48fe",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1752048960, "lastModified": 1753122741,
"narHash": "sha256-gATnkOe37eeVwKKYCsL+OnS2gU4MmLuZFzzWCtaKLI8=", "narHash": "sha256-nFxE8lk9JvGelxClCmwuJYftbHqwnc01dRN4DVLUroM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "7ced9122cff2163c6a0212b8d1ec8c33a1660806", "rev": "cc66fddc6cb04ab479a1bb062f4d4da27c936a22",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -38,11 +38,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1752480373, "lastModified": 1752950548,
"narHash": "sha256-JHQbm+OcGp32wAsXTE/FLYGNpb+4GLi5oTvCxwSoBOA=", "narHash": "sha256-NS6BLD0lxOrnCiEOcvQCDVPXafX1/ek1dfJHX1nUIzc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "62e0f05ede1da0d54515d4ea8ce9c733f12d9f08", "rev": "c87b95e25065c028d31a94f06a62927d18763fdf",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -31,6 +31,7 @@
./desktop/gaming.nix ./desktop/gaming.nix
./desktop/virtualization.nix ./desktop/virtualization.nix
./desktop/daw.nix ./desktop/daw.nix
./desktop/crypto.nix
]; ];
}; };
aurora = nixpkgs.lib.nixosSystem { aurora = nixpkgs.lib.nixosSystem {

View file

@ -13,6 +13,7 @@
# hardware # hardware
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;
services.fwupd.enable = true;
# Network # Network
networking = { networking = {
@ -125,6 +126,7 @@
pv pv
whois whois
kdePackages.xdg-desktop-portal-kde kdePackages.xdg-desktop-portal-kde
fwupd
]; ];
services.flatpak.enable = true; services.flatpak.enable = true;

View file

@ -8,7 +8,12 @@
boot.initrd.kernelModules = [ "amdgpu" ]; boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ]; # Include kvm-amd for virtualization support boot.kernelModules = [ "kvm-amd" ]; # Include kvm-amd for virtualization support
boot.extraModulePackages = []; boot.extraModulePackages = [];
boot.kernelParams = [ "amdgpu.dc=1" "usbcore.autosuspend=-1" ] ; boot.kernelParams = [
"amdgpu.dc=1"
"usbcore.autosuspend=-1"
"nvme_core.default_ps_max_latency_us=0"
"pcie_aspm=off" "pcie_port_pm=off"
];
networking.useDHCP = lib.mkDefault true; networking.useDHCP = lib.mkDefault true;
@ -32,6 +37,7 @@
}; };
}; };
# Powersac
# Swap # Swap
swapDevices = [ swapDevices = [