Repaired login cmd in caelestia

This commit is contained in:
Tomas Rivera
2026-04-18 14:12:26 +02:00
parent 4ada4c9121
commit 99fe60b43c
5 changed files with 29 additions and 5 deletions
+1 -1
View File
@@ -36,7 +36,7 @@
#../../modules/home-manager/obsidian.nix obsidian was replaced with a custom solution
../../modules/home-manager/thunderbird.nix # email client
../../modules/home-manager/eza.nix # ls replacement
../../modules/home-manager/vivify.nix # neovim markdown viewer (has also config for qutebrowser
../../modules/other/desktopEntries.nix # creates .desktop files
];
+1 -1
View File
@@ -432,7 +432,7 @@ in {
reboot = "cached";
};
commands = {
logout = ["loginctl" "terminate-user"];
logout = ["hyprctl" "dispatch exit"];
shutdown = ["systemctl" "poweroff"];
hibernate = ["systemctl" "hibernate"];
reboot = ["systemctl" "reboot"];
+2 -2
View File
@@ -221,7 +221,7 @@ in {
"custom-gitnotify"
#"custom-obsidianbackup" # backups the obsidian notes to kdrive and to a timed hidden dir (~/.Notes.backup/)
#"QS-notifycache" # builds the cache that will be used for the notification history
"sleep 2 & caelestia-shell" #works better if it sleeps a bit before
"sleep 4 & caelestia-shell" #works better if it sleeps a bit before
/*
We stopped using that ######################### maybe we should desactivate those scripts
# login autostart
@@ -235,7 +235,7 @@ in {
######################
*/
];
splash = false; # remove default background on startup
# gestures (also keybindings)
gesture = [
"3, right, move, +col"
+24
View File
@@ -0,0 +1,24 @@
{
config,
pkgs,
...
}: {
home.file.".config/vivify/config.json" = {
enable = true;
text = ''
{
"browserOptions": {
"name": "qutebrowser",
"arguments": ["-T"]
}
}'';
};
programs.qutebrowser = {
enable = true;
settings = {
auto_save.session = false;
changelog_after_upgrade = "never";
content.cookies.accept = "never";
};
};
}
+1 -1
View File
@@ -24,7 +24,7 @@
fi
}
eval "$(direnv hook zsh)"
export PATH="$PATH:$HOME/NoteWrapper/result/bin" # some project im coding
export PATH="$PATH:$HOME/NoteWrapper" # some project im coding
fastfetch''\n'';
shellAliases = {
".." = "z ..";