xserver.nix is now desktop.nix; WM's can now be added/removed through machine options. Added sway and some fonts.
This commit is contained in:
parent
4386bc197d
commit
6c744f089e
12 changed files with 337 additions and 38 deletions
|
@ -36,7 +36,7 @@ in {
|
|||
enableKSM = true;
|
||||
opengl = {
|
||||
driSupport = true;
|
||||
extraPackages = with pkgs; [ intel-media-driver libvdpau-va-gl vaapiIntel vaapiVdpau ];
|
||||
extraPackages = with pkgs; [ intel-media-driver libvdpau-va-gl vaapiIntel vaapiVdpau intel-media-driver ];
|
||||
driSupport32Bit = true;
|
||||
extraPackages32 = with pkgs.pkgsi686Linux; [ libvdpau-va-gl vaapiIntel vaapiVdpau ];
|
||||
};
|
||||
|
|
|
@ -31,7 +31,7 @@ with lib;
|
|||
];
|
||||
services = [
|
||||
"containers"
|
||||
"xserver"
|
||||
"desktop"
|
||||
"docker"
|
||||
"udev"
|
||||
"cups"
|
||||
|
@ -43,6 +43,7 @@ with lib;
|
|||
allowedUDPPortRanges = [ { from = 1714; to = 1764; } ];
|
||||
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
|
||||
};
|
||||
desktop.wms = [ "i3" ];
|
||||
};
|
||||
|
||||
config.system.copySysConf = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue