Setting Up Envy's Configs And Moving GUI settings to a separate file

This commit is contained in:
Annika Merris 2024-05-22 09:15:53 -04:00
parent 89135f43ec
commit 93764b9520
3 changed files with 122 additions and 9 deletions

15
hosts/kim/gui.nix Normal file
View 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;
}