Configure kde

This commit is contained in:
Isshi0417 2024-07-13 22:33:34 +09:00
parent 438c7c6d78
commit e19c390afe
7 changed files with 3 additions and 63 deletions

View File

@ -1,20 +1,9 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
imports = [
./konsole
];
qt.enable = true;
qt.platformTheme = "gtk";
qt.style.name = "ArcDarker";
qt.style.package = pkgs.arc-kde-theme;
home.packages = with pkgs; [ home.packages = with pkgs; [
tela-icon-theme gruvbox-plus-icons
afterglow-cursors-recolored afterglow-cursors-recolored
kde-gruvbox
]; ];
} }

View File

@ -1,8 +0,0 @@
{ ... }:
{
home.file.".local/share/konsole" = {
recursive = true;
source = ./config;
};
}

View File

@ -4,7 +4,4 @@
# Enable bluetooth # Enable bluetooth
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true; hardware.bluetooth.powerOnBoot = true;
# Enable blueman
services.blueman.enable = true;
} }

View File

@ -2,9 +2,8 @@
{ {
imports = [ imports = [
#./gnome-de.nix
./hyprland.nix ./hyprland.nix
./awesome.nix ./awesome.nix
./kde.nix ./plasma.nix
]; ];
} }

View File

@ -1,33 +0,0 @@
{ pkgs, ... }:
{
services.xserver = {
desktopManager.gnome.enable = true;
};
environment.gnome.excludePackages = (with pkgs; [
gnome-photos
gnome-tour
gedit
]) ++ (with pkgs.gnome; [
baobab
cheese
eog
epiphany
simple-scan
totem
yelp
evince
geary
seahorse
gnome-contacts
gnome-maps
gnome-music
]);
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "";
};
}

View File

@ -2,8 +2,4 @@
{ {
services.xserver.desktopManager.plasma6.enable = true; services.xserver.desktopManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs.kdePackages; [
];
} }