From 7905d11c86a0d2ac59d23e4d2cdd461045721246 Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Fri, 24 Oct 2025 23:24:20 -0400 Subject: [PATCH 1/4] Update flake.lock Note: this version seems to have some KDE issues (see next commit w/commented failures) --- flake.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index ab16d33..de7a02e 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1760500983, - "narHash": "sha256-zfY4F4CpeUjTGgecIJZ+M7vFpwLc0Gm9epM/iMQd4w8=", + "lastModified": 1761344779, + "narHash": "sha256-6LNSptFYhiAd0M/maJoixJw7V0Kp5BSoMRtIahcfu3M=", "owner": "nix-community", "repo": "home-manager", - "rev": "c53e65ec92f38d30e3c14f8d628ab55d462947aa", + "rev": "c644cb018f9fdec55f5ac2afb4713a8c7beb757c", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1760284886, - "narHash": "sha256-TK9Kr0BYBQ/1P5kAsnNQhmWWKgmZXwUQr4ZMjCzWf2c=", + "lastModified": 1761114652, + "narHash": "sha256-f/QCJM/YhrV/lavyCVz8iU3rlZun6d+dAiC3H+CDle4=", "owner": "nixos", "repo": "nixpkgs", - "rev": "cf3f5c4def3c7b5f1fc012b3d839575dbe552d43", + "rev": "01f116e4df6a15f4ccdffb1bcd41096869fb385c", "type": "github" }, "original": { From 3f9e75d9d467a1654ba743a8ed5446bc28785b14 Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Fri, 24 Oct 2025 23:24:57 -0400 Subject: [PATCH 2/4] TEMPORARY: comment failing builds --- hosts/default/configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 4328e00..270b63d 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -265,7 +265,7 @@ in amdgpu_top # top-like monitor for AMD GPUs direnv # autoload .envrc files zoxide # directory navigator (z) - nextcloud-client # next cloud UI + # nextcloud-client # next cloud UI (also just fialed to build. Gah... damn KDE lib issues file # show file types tldr # cli command summary stress # system workload generator @@ -291,7 +291,7 @@ in distrobox # instant alternate OS availability pigz # muti-treaded replacement for gzip unzip # old standard zip handler - rpi-imager # rasbperry pi os burner util + # rpi-imager # rasbperry pi os burner util (1.9.6 failed build) # screenkey # broadcast key presses superfile # cli file manager mpv # movie player From c00381c4dddef725b4b7f8e855914e1ecfd9e124 Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Fri, 24 Oct 2025 23:25:29 -0400 Subject: [PATCH 3/4] Give Cosmic desktop a try...finally They say it's in beta(3)! --- hosts/default/configuration.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 270b63d..8cccb56 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -135,9 +135,17 @@ in # services.xserver.enable = true; # Enable the KDE Plasma Desktop Environment. - services.displayManager.sddm.enable = true; - services.displayManager.sddm.wayland.enable = true; - services.desktopManager.plasma6.enable = true; + #services.displayManager.sddm.enable = true; + #services.displayManager.sddm.wayland.enable = true; + #services.desktopManager.plasma6.enable = true; + + # Enable the Cosmic Desktop Environment: + # Enable the login manager + services.displayManager.cosmic-greeter.enable = true; + # Enable the COSMIC DE itself + services.desktopManager.cosmic.enable = true; + # Enable XWayland support in COSMIC + services.desktopManager.cosmic.xwayland.enable = true; # Configure keymap in X11 (presumably, XWayland uses something different?) #services.xserver.xkb = { From 424ab17f6887907c1fec97265eefd6802b6fac2c Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Fri, 24 Oct 2025 23:27:41 -0400 Subject: [PATCH 4/4] Re-enable rocm...turns out it wasn't just hipblaslt, but also aortriton https://github.com/NixOS/nixpkgs/issues/453992 --- hosts/default/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 8cccb56..eea65c3 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -418,7 +418,7 @@ in services.ollama = { enable = true; - #acceleration = "rocm"; hipblaslt not compiling at present + acceleration = "rocm"; # hipblaslt not compiling at present environmentVariables = { HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore OLLAMA_LOAD_TIMEOUT = "2m"; # Reduce load timeout (from 5 min)...if it's that big, forget it.