mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-11 20:25:43 -05:00
Setting Up Envy's Configs And Moving GUI settings to a separate file
This commit is contained in:
parent
89135f43ec
commit
93764b9520
3 changed files with 122 additions and 9 deletions
15
hosts/kim/gui.nix
Normal file
15
hosts/kim/gui.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
gui.enable = true;
|
||||
|
||||
services.xserver.enable = true;
|
||||
services.displayManager.sddm.enable = true;
|
||||
services.xserver = {
|
||||
desktopManager.plasma5.enable = true;
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
};
|
||||
networking.networkmanager.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue