mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
1
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
imports = [
|
||||
# ./kde.nix
|
||||
./gnome.nix
|
||||
./noctalia.nix
|
||||
#./xfce.nix
|
||||
#./deepin.nix
|
||||
];
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
# qt = {
|
||||
# enable = true;
|
||||
# style = "breeze";
|
||||
# platformTheme = "kde6"; # kde6
|
||||
# };
|
||||
environment.plasma6.excludePackages = with pkgs; [
|
||||
kdePackages.plasma-browser-integration
|
||||
kdePackages.elisa
|
||||
kdePackages.ksshaskpass
|
||||
kdePackages.kwallet
|
||||
kdePackages.kwallet-pam
|
||||
kdePackages.kwalletmanager
|
||||
# libsForQt5.kwallet
|
||||
# libsForQt5.kwallet-pam # error
|
||||
# libsForQt5.kwalletmanager
|
||||
];
|
||||
services = {
|
||||
displayManager = {
|
||||
sddm = {
|
||||
enable = true;
|
||||
theme = "WhiteSur-light";
|
||||
wayland = {
|
||||
enable = true;
|
||||
compositor = "kwin";
|
||||
};
|
||||
};
|
||||
};
|
||||
desktopManager.plasma6.enable = true;
|
||||
};
|
||||
programs.partition-manager.enable = true;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
inputs.noctalia.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||
# ... maybe other stuff
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user