Changes
1 changed files (+28/-1)
-
-
@@ -20,7 +20,12 @@# Create a symbolic link or normal file there. The module tries to read with # 10s interval if the file does not exist. { config, pkgs, ... }: { config, lib, pkgs, ... }: { imports = [ ../home-manager/state-version.nix
-
@@ -67,6 +72,28 @@wayland-desktop.niri.screenshot-path = "${config.xdg.userDirs.pictures}/screenshot.%Y-%m-%d.%H-%M-%S.png"; xdg.configFile."nixos-desktop/autostart/open-vault.desktop" = { text = '' [Desktop Entry] Type=Application Name=Vault NoDisplay=true TryExec=${lib.getExe pkgs.ghostty} # nvim binary should be the one from profile--can't use pkgs.neovim here. Exec=${lib.getExe pkgs.ghostty} --gtk-single-instance=true -e nvim Todo.md Path=${config.home.homeDirectory}/obsidian Terminal=false StartupNotify=true StartupWMClass=com.mitchellh.ghostty ''; }; xdg.autostart = { enable = true; readOnly = true; entries = [ "${config.xdg.configHome}/nixos-desktop/autostart/open-vault.desktop" ]; }; home.packages = with pkgs; [ pwvucontrol ]; }; }
-