summaryrefslogtreecommitdiffstats
path: root/jeschli/1systems/reagenzglas/desktop.nix
diff options
context:
space:
mode:
Diffstat (limited to 'jeschli/1systems/reagenzglas/desktop.nix')
-rw-r--r--jeschli/1systems/reagenzglas/desktop.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/jeschli/1systems/reagenzglas/desktop.nix b/jeschli/1systems/reagenzglas/desktop.nix
new file mode 100644
index 00000000..0c429810
--- /dev/null
+++ b/jeschli/1systems/reagenzglas/desktop.nix
@@ -0,0 +1,25 @@
+# Configuration for the desktop environment
+
+{ config, lib, pkgs, ... }:
+{
+ # Configure basic X-server stuff:
+ services.xserver = {
+ enable = true;
+ xkbOptions = "caps:super";
+ exportConfiguration = true;
+
+ displayManager.slim.enable = true;
+ };
+
+ # Configure fonts
+ fonts = {
+ fonts = with pkgs; [
+ corefonts
+ font-awesome-ttf
+ noto-fonts-cjk
+ noto-fonts-emoji
+ powerline-fonts
+ helvetica-neue-lt-std
+ ];
+ };
+}