home.nix: last cleanup

This commit is contained in:
2026-05-17 12:51:59 +02:00
parent a724d9e98b
commit 07dce06ceb
3 changed files with 14 additions and 10 deletions
@@ -0,0 +1,32 @@
{
...
}:
# see ../../docs/printing.md
{
home.file.".local/share/applications/org.quickshell.desktop" = {
enable = true;
text = ''
[Desktop Entry]
Name=QuickShell
Comment=QuickShell application
Exec=quickshell
Icon=utilities-terminal
Type=Application
Categories=Utility;
StartupNotify=true
X-DBUS-ServiceName=org.quickshell
'';
};
home.file.".local/share/applications/org.kde.PrintQueue.desktop" = {
enable = true;
text = ''
[Desktop Entry]
Type=Application
Name=Print Queue
Exec=print-queue
Icon=printer
Categories=Utility;
StartupNotify=true
'';
};
}
+12
View File
@@ -0,0 +1,12 @@
{
...
}:
{
home.username = "tomasr";
home.homeDirectory = "/home/tomasr";
home.sessionVariables = {
EDITOR = "neovim";
TERMINAL = "kitty";
};
}