summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-07 19:53:47 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2020-01-27 16:34:37 -0500
commit0f2536f15b6c8ec841ea6b9c761602612f6cf75f (patch)
treeb2ca702133f7a613bd0faaea3b388855a7d7015c /nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix
parent5e46d5a7b59d69e7b86239195f58d26277ae0370 (diff)
downloadnixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.tar
nixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.tar.gz
nixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.tar.bz2
nixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.tar.lz
nixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.tar.xz
nixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.tar.zst
nixpkgs-0f2536f15b6c8ec841ea6b9c761602612f6cf75f.zip
nixos/release: rename iso_graphical to iso_plasma5
And all the other things and paths to match it
Diffstat (limited to 'nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix b/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix
new file mode 100644
index 00000000000..e00d3f7535b
--- /dev/null
+++ b/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix
@@ -0,0 +1,48 @@
+# This module defines a NixOS installation CD that contains X11 and
+# Plasma 5.
+
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+{
+  imports = [ ./installation-cd-graphical-base.nix ];
+
+  services.xserver = {
+    desktopManager.plasma5 = {
+      enable = true;
+    };
+
+    # Automatically login as nixos.
+    displayManager.sddm = {
+      enable = true;
+      autoLogin = {
+        enable = true;
+        user = "nixos";
+      };
+    };
+  };
+
+  environment.systemPackages = with pkgs; [
+    # Graphical text editor
+    kate
+  ];
+
+  system.activationScripts.installerDesktop = let
+
+    # Comes from documentation.nix when xserver and nixos.enable are true.
+    manualDesktopFile = "/run/current-system/sw/share/applications/nixos-manual.desktop";
+
+    homeDir = "/home/nixos/";
+    desktopDir = homeDir + "Desktop/";
+
+  in ''
+    mkdir -p ${desktopDir}
+    chown nixos ${homeDir} ${desktopDir}
+
+    ln -sfT ${manualDesktopFile} ${desktopDir + "nixos-manual.desktop"}
+    ln -sfT ${pkgs.gparted}/share/applications/gparted.desktop ${desktopDir + "gparted.desktop"}
+    ln -sfT ${pkgs.konsole}/share/applications/org.kde.konsole.desktop ${desktopDir + "org.kde.konsole.desktop"}
+  '';
+
+}