summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/gui/studio-virtual.nix
blob: 272060c2c9853892eb17455f27f1ed54da798fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ config, lib, ... }:
let
  user = config.makefu.gui.user;
in
{
  imports = [
    <nixpkgs/nixos/modules/services/x11/terminal-server.nix>
  ];
  services.xserver.displayManager.sddm.enable = lib.mkForce false;
  services.xserver.desktopManager = {
    default = "plasma5";
    plasma5.enable = true;
  };

  services.xserver.layout = "us";
  services.xserver.xkbVariant = "altgr-intl";
  services.xserver.xkbOptions = "ctrl:nocaps";

}