cleaned up gui-pkgs
and added plasma-browser-integration
This commit is contained in:
parent
c7187e2509
commit
f1bdf5d497
1 changed files with 7 additions and 4 deletions
|
@ -1,14 +1,17 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, lib, ... }:
|
||||||
# kde stuff
|
let
|
||||||
environment.systemPackages = with pkgs; [
|
kdePackages = with pkgs.kdePackages; [ plasma-browser-integration ];
|
||||||
|
packages = with pkgs; [
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
# catppuccin
|
# catppuccin for kde plasma
|
||||||
(catppuccin-kde.override {
|
(catppuccin-kde.override {
|
||||||
flavour = [ "mocha" "macchiato" "frappe" "latte" ];
|
flavour = [ "mocha" "macchiato" "frappe" "latte" ];
|
||||||
accents = [ "blue" ];
|
accents = [ "blue" ];
|
||||||
winDecStyles = [ "classic" ];
|
winDecStyles = [ "classic" ];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
in {
|
||||||
|
environment.systemPackages = lib.lists.unique (kdePackages ++ packages);
|
||||||
|
|
||||||
programs.partition-manager.enable = true;
|
programs.partition-manager.enable = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue