Compare commits

...

4 commits

Author SHA1 Message Date
Chris (wolcen) Thompson
424ab17f68 Re-enable rocm...turns out it wasn't just hipblaslt, but also aortriton
https://github.com/NixOS/nixpkgs/issues/453992
2025-10-24 23:27:41 -04:00
Chris (wolcen) Thompson
c00381c4dd Give Cosmic desktop a try...finally
They say it's in beta(3)!
2025-10-24 23:25:29 -04:00
Chris (wolcen) Thompson
3f9e75d9d4 TEMPORARY: comment failing builds 2025-10-24 23:24:57 -04:00
Chris (wolcen) Thompson
7905d11c86 Update flake.lock
Note: this version seems to have some KDE issues (see next commit w/commented failures)
2025-10-24 23:24:20 -04:00
2 changed files with 20 additions and 12 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1760500983, "lastModified": 1761344779,
"narHash": "sha256-zfY4F4CpeUjTGgecIJZ+M7vFpwLc0Gm9epM/iMQd4w8=", "narHash": "sha256-6LNSptFYhiAd0M/maJoixJw7V0Kp5BSoMRtIahcfu3M=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "c53e65ec92f38d30e3c14f8d628ab55d462947aa", "rev": "c644cb018f9fdec55f5ac2afb4713a8c7beb757c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1760284886, "lastModified": 1761114652,
"narHash": "sha256-TK9Kr0BYBQ/1P5kAsnNQhmWWKgmZXwUQr4ZMjCzWf2c=", "narHash": "sha256-f/QCJM/YhrV/lavyCVz8iU3rlZun6d+dAiC3H+CDle4=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "cf3f5c4def3c7b5f1fc012b3d839575dbe552d43", "rev": "01f116e4df6a15f4ccdffb1bcd41096869fb385c",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -135,9 +135,17 @@ in
# services.xserver.enable = true; # services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true; #services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true; #services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.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?) # Configure keymap in X11 (presumably, XWayland uses something different?)
#services.xserver.xkb = { #services.xserver.xkb = {
@ -265,7 +273,7 @@ in
amdgpu_top # top-like monitor for AMD GPUs amdgpu_top # top-like monitor for AMD GPUs
direnv # autoload .envrc files direnv # autoload .envrc files
zoxide # directory navigator (z) 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 file # show file types
tldr # cli command summary tldr # cli command summary
stress # system workload generator stress # system workload generator
@ -291,7 +299,7 @@ in
distrobox # instant alternate OS availability distrobox # instant alternate OS availability
pigz # muti-treaded replacement for gzip pigz # muti-treaded replacement for gzip
unzip # old standard zip handler 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 # screenkey # broadcast key presses
superfile # cli file manager superfile # cli file manager
mpv # movie player mpv # movie player
@ -410,7 +418,7 @@ in
services.ollama = { services.ollama = {
enable = true; enable = true;
#acceleration = "rocm"; hipblaslt not compiling at present acceleration = "rocm"; # hipblaslt not compiling at present
environmentVariables = { environmentVariables = {
HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore 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. OLLAMA_LOAD_TIMEOUT = "2m"; # Reduce load timeout (from 5 min)...if it's that big, forget it.