Manage background with gnome settings
This commit is contained in:
parent
71deaf21a9
commit
2de7a0a1ad
7 changed files with 65 additions and 8 deletions
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
nebula
|
||||
traceroute # for debugging
|
||||
];
|
||||
|
||||
networking.firewall.allowedUDPPorts = [ 4242 ];
|
||||
|
|
21
hosts/_common/components/plasma_wayland.nix
Normal file
21
hosts/_common/components/plasma_wayland.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
autoSuspend = false;
|
||||
wayland = true;
|
||||
};
|
||||
displayManager.defaultSession = "plasma";
|
||||
displayManager.sddm.wayland.enable = true;
|
||||
desktopManager.plasma6 = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
xclip
|
||||
];
|
||||
}
|
||||
|
||||
|
19
hosts/_common/components/plasma_xorg.nix
Normal file
19
hosts/_common/components/plasma_xorg.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.gdm = {
|
||||
enable = true;
|
||||
autoSuspend = false;
|
||||
wayland = false;
|
||||
};
|
||||
displayManager.defaultSession = "plasmax11";
|
||||
desktopManager.plasma6 = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
xclip
|
||||
];
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue