separate plasma from sddm
This commit is contained in:
parent
d568de464e
commit
f19ae43a40
4 changed files with 17 additions and 14 deletions
|
@ -8,6 +8,7 @@
|
||||||
./home
|
./home
|
||||||
./niri
|
./niri
|
||||||
./plasma
|
./plasma
|
||||||
|
./sddm
|
||||||
./virt
|
./virt
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -74,14 +75,15 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Needed for some features in nautilus such as auto-mounting and trash
|
|
||||||
services.gvfs.enable = true;
|
|
||||||
|
|
||||||
users.users.twoneis = {
|
users.users.twoneis = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "twoneis";
|
description = "twoneis";
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
};
|
};
|
||||||
|
services = {
|
||||||
|
# Needed for some features in nautilus such as auto-mounting and trash
|
||||||
|
gvfs.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
programs.fish.enable = true;
|
programs.fish.enable = true;
|
||||||
users.defaultUserShell = pkgs.fish;
|
users.defaultUserShell = pkgs.fish;
|
||||||
|
|
|
@ -1,14 +1,5 @@
|
||||||
{ pkgs, lib, config, ... }: lib.mkIf (config.withPlasma) {
|
{ pkgs, lib, config, ... }: lib.mkIf (config.withPlasma) {
|
||||||
services = {
|
services = {
|
||||||
displayManager.sddm = {
|
|
||||||
enable = true;
|
|
||||||
wayland = {
|
|
||||||
enable = true;
|
|
||||||
compositor = "kwin";
|
|
||||||
};
|
|
||||||
theme = "where_is_my_sddm_theme";
|
|
||||||
};
|
|
||||||
|
|
||||||
desktopManager.plasma6 = {
|
desktopManager.plasma6 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
@ -20,8 +11,6 @@
|
||||||
konsole
|
konsole
|
||||||
oxygen
|
oxygen
|
||||||
];
|
];
|
||||||
|
|
||||||
systemPackages = [ (pkgs.where-is-my-sddm-theme.override ({ themeConfig = builtins.readFile ./sddm-theme.conf; })) ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
12
modules/sddm/default.nix
Normal file
12
modules/sddm/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, lib, config, ... }: lib.mkIf(config.withNiri or config.withPlasma or config.withGnome){
|
||||||
|
services.displayManager.sddm = {
|
||||||
|
enable = true;
|
||||||
|
wayland = {
|
||||||
|
enable = true;
|
||||||
|
compositor = "kwin";
|
||||||
|
};
|
||||||
|
theme = "where_is_my_sddm_theme";
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ (pkgs.where-is-my-sddm-theme.override ({ themeConfig = builtins.readFile ./sddm-theme.conf; })) ];
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue