mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 01:37:43 -05:00
Moving Basic Audio Config To nixos Module
This commit is contained in:
parent
5f885a1746
commit
aaf47f1d84
7 changed files with 91 additions and 28 deletions
15
hosts/envy/gui.nix
Normal file
15
hosts/envy/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