Add plasma-manager module
All checks were successful
Check flake / build-amd64-linux (push) Successful in 2m46s

This commit is contained in:
2024-06-29 23:17:03 +01:00
parent eddbe239cf
commit 8d5680811d
3 changed files with 7 additions and 1 deletions

View File

@ -32,6 +32,11 @@
url = "github:nix-community/nixvim/nixos-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
secrets = {
url = "git+ssh://git@git.vimium.com/jordan/nix-secrets.git";
flake = false;

View File

@ -21,7 +21,7 @@
videoDrivers = [ "nvidia" ];
};
displayManager = {
defaultSession = "plasmax11";
defaultSession = if config.modules.desktop.kde.enable then "plasmax11" else "gnome-xorg";
sddm.wayland.enable = lib.mkForce false;
};
};

View File

@ -69,6 +69,7 @@ with lib;
sharedModules = [
inputs.nixvim.homeManagerModules.nixvim
inputs.plasma-manager.homeManagerModules.plasma-manager
];
};