mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
Repaired login cmd in caelestia
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
#../../modules/home-manager/obsidian.nix obsidian was replaced with a custom solution
|
#../../modules/home-manager/obsidian.nix obsidian was replaced with a custom solution
|
||||||
../../modules/home-manager/thunderbird.nix # email client
|
../../modules/home-manager/thunderbird.nix # email client
|
||||||
../../modules/home-manager/eza.nix # ls replacement
|
../../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
|
../../modules/other/desktopEntries.nix # creates .desktop files
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -432,7 +432,7 @@ in {
|
|||||||
reboot = "cached";
|
reboot = "cached";
|
||||||
};
|
};
|
||||||
commands = {
|
commands = {
|
||||||
logout = ["loginctl" "terminate-user"];
|
logout = ["hyprctl" "dispatch exit"];
|
||||||
shutdown = ["systemctl" "poweroff"];
|
shutdown = ["systemctl" "poweroff"];
|
||||||
hibernate = ["systemctl" "hibernate"];
|
hibernate = ["systemctl" "hibernate"];
|
||||||
reboot = ["systemctl" "reboot"];
|
reboot = ["systemctl" "reboot"];
|
||||||
|
|||||||
@@ -221,7 +221,7 @@ in {
|
|||||||
"custom-gitnotify"
|
"custom-gitnotify"
|
||||||
#"custom-obsidianbackup" # backups the obsidian notes to kdrive and to a timed hidden dir (~/.Notes.backup/)
|
#"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
|
#"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
|
We stopped using that ######################### maybe we should desactivate those scripts
|
||||||
# login autostart
|
# login autostart
|
||||||
@@ -235,7 +235,7 @@ in {
|
|||||||
######################
|
######################
|
||||||
*/
|
*/
|
||||||
];
|
];
|
||||||
|
splash = false; # remove default background on startup
|
||||||
# gestures (also keybindings)
|
# gestures (also keybindings)
|
||||||
gesture = [
|
gesture = [
|
||||||
"3, right, move, +col"
|
"3, right, move, +col"
|
||||||
|
|||||||
@@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
eval "$(direnv hook zsh)"
|
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'';
|
fastfetch''\n'';
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
".." = "z ..";
|
".." = "z ..";
|
||||||
|
|||||||
Reference in New Issue
Block a user