added plasma

This commit is contained in:
2024-08-13 22:36:15 +09:00
parent 0940cc8427
commit 70bb31c3f5
5 changed files with 15 additions and 23 deletions

View File

@@ -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

View File

@@ -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
View 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
];
}

View File

@@ -6,6 +6,7 @@
./gnome-keyring.nix
./xmonad.nix
./sway.nix
./plasma.nix
];
environment.systemPackages = with pkgs; [

View File

@@ -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;
};
};
}