added plasma
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
../../system/services/cups.nix
|
||||
../../system/services/ssh.nix
|
||||
../../system/services/polkit.nix
|
||||
../../system/services/flatpak.nix
|
||||
../../system/hardware/kernel.nix
|
||||
../../system/hardware/nvidia.nix
|
||||
../../system/hardware/opengl.nix
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
hardware.opengl.enable = true;
|
||||
hardware.opengl.extraPackages = with pkgs; [
|
||||
hardware.graphics.enable = true;
|
||||
hardware.graphics.extraPackages = with pkgs; [
|
||||
mesa
|
||||
];
|
||||
}
|
||||
|
||||
11
system/wm/plasma.nix
Normal file
11
system/wm/plasma.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./dbus.nix
|
||||
];
|
||||
services.displayManager.plasma6.enable = true;
|
||||
|
||||
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||||
plasma-browser-integration
|
||||
];
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
./gnome-keyring.nix
|
||||
./xmonad.nix
|
||||
./sway.nix
|
||||
./plasma.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./fonts.nix
|
||||
./dbus.nix
|
||||
./gnome-keyring.nix
|
||||
];
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
layout = "us";
|
||||
xkbVariant = "";
|
||||
xkbOptions = "";
|
||||
excludePackages = [ pkgs.xterm ];
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = false;
|
||||
package = pkgs.sddm;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user