From d2571482b4eb5660fd92727efb4e5254df06e45e Mon Sep 17 00:00:00 2001 From: adikro Date: Mon, 19 Jan 2026 11:43:42 +0100 Subject: a lot of changes --- hosts/desktop/configuration.nix | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) (limited to 'hosts/desktop/configuration.nix') diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 4505408..c43d4de 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -1,13 +1,19 @@ -{ config, inputs, username, ... }: +{ + config, + inputs, + username, + pkgs, + ... +}: { system.stateVersion = "25.05"; imports = [ - inputs.disko.nixosModules.disko + inputs.disko.nixosModules.disko - ./hardware-configuration.nix - ../../os/default.nix - ]; + ./hardware-configuration.nix + ../../os/default.nix + ]; os = { core = { @@ -22,6 +28,7 @@ drivers = { enable = true; amdgpu.enable = true; + stability = "unstable"; }; fonts.enable = true; greet.enable = true; @@ -62,8 +69,9 @@ kvm.enable = true; nix-helper.enable = true; ollama.enable = true; - bluetooth.enable = true; - zzz.enable = true; + # bluetooth.enable = true; + kdeconnect.enable = true; + # zzz.enable = true; }; wm = { enable = true; @@ -71,6 +79,11 @@ }; }; + environment.systemPackages = with pkgs; [ + krusader + kdePackages.kio-extras + ]; + xdg.terminal-exec = { enable = true; settings = { @@ -81,8 +94,8 @@ boot = { kernelParams = [ "video=DP-1:2560x1440@240" ]; kernelModules = [ "nct6687" ]; - extraModulePackages = [ - config.boot.kernelPackages.nct6687d + extraModulePackages = [ + config.boot.kernelPackages.nct6687d ]; }; } -- cgit v1.3