switch pc to unstable, use kde 6

This commit is contained in:
Kopatz
2024-03-02 09:34:45 +01:00
parent 0af8175210
commit 70a9348fa6
6 changed files with 47 additions and 7 deletions

View File

@@ -6,6 +6,6 @@
xkbVariant = "";
enable = true;
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
desktopManager.plasma6.enable = true;
};
}

View File

@@ -0,0 +1,6 @@
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.virtualisation.libvirtd.enable {
boot.kernelParams = [ "amd_iommu=on" ];
};
}

View File

@@ -1,8 +1,8 @@
{ inputs, config, ... }:
{ inputs, config, pkgsVersion, ... }:
{
nix.optimise.automatic = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.registry.nixpkgs.flake = inputs.nixpkgs;
nix.registry.nixpkgs.flake = pkgsVersion;
nix.nixPath = ["nixpkgs=flake:nixpkgs"];
home-manager.users.${config.mainUser.name}.home.sessionVariables.NIX_PATH = "nixpkgs=flake:nixpkgs$\{NIX_PATH:+:$NIX_PATH}";
}