Configure qt

This commit is contained in:
Isshi0417 2024-07-13 13:35:34 +09:00
parent 9b00e9df53
commit 438c7c6d78
9 changed files with 54 additions and 8 deletions

View File

@ -71,11 +71,6 @@
LC_TIME = "en_US.UTF-8"; LC_TIME = "en_US.UTF-8";
}; };
services.xserver.displayManager.gdm = {
enable = true;
wayland = true;
};
programs.zsh.enable = true; programs.zsh.enable = true;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.

View File

@ -5,8 +5,9 @@
./git ./git
./terminal ./terminal
./gnome-extensions ./gnome-extensions
./awesome #./awesome
./hyprland ./hyprland
./qt/retro
]; ];
# Allow Unfree # Allow Unfree

View File

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

View File

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

View File

@ -11,6 +11,19 @@
./audio ./audio
]; ];
services.xserver = {
enable = true;
};
services.displayManager.sddm = {
enable = true;
wayland = {
enable = true;
compositor = "kwin";
};
};
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View File

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

View File

@ -2,7 +2,6 @@
{ {
services.xserver = { services.xserver = {
enable = true;
desktopManager.gnome.enable = true; desktopManager.gnome.enable = true;
}; };

View File

@ -0,0 +1,9 @@
{ pkgs, ... }:
{
services.xserver.desktopManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs.kdePackages; [
];
}