Moving Basic Audio Config To nixos Module

This commit is contained in:
Annika Merris 2024-05-25 08:57:34 -04:00
parent 5f885a1746
commit aaf47f1d84
7 changed files with 91 additions and 28 deletions

15
hosts/envy/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;
}