about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/by-name/ly/ly/module.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/by-name/ly/ly/module.nix b/modules/by-name/ly/ly/module.nix
index 8835a2a2..dc0fe5a1 100644
--- a/modules/by-name/ly/ly/module.nix
+++ b/modules/by-name/ly/ly/module.nix
@@ -22,6 +22,15 @@
     null
     config.home-manager.users.soispha.home.packages;
 
+  shellDesktop = pkgs.writeFile "zsh.desktop" ''
+    [Desktop Entry]
+    Comment=A simple shell session
+    DesktopNames=null
+    Exec=zsh
+    Name=zsh shell
+    Terminal=true
+  '';
+
   customSessionsDir =
     pkgs.runCommand "custom-sessions" {}
     /*
@@ -30,6 +39,7 @@
     ''
       mkdir "$out";
       cp "${riverDesktop}/share/applications/river.desktop" "$out"
+      cp "${shellDesktop}" "$out"
     '';
 in {
   options.soispha.programs.ly = {