Change pinned folders

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-08-13 14:42:07 +02:00
parent 0cef4320fd
commit f704a5e9c4
3 changed files with 23 additions and 2 deletions
+15
View File
@@ -66,6 +66,21 @@ in {
categories = ["System" "FileManager" "FileTools" "ConsoleOnly"]; categories = ["System" "FileManager" "FileTools" "ConsoleOnly"];
}; };
xdg.configFile."elio/config.toml".text = ''
[places]
entries = [
"home",
"documents",
"downloads",
"pictures",
{ title = "Notes", path = "~/Notes" },
{ title = "Cyber", path = "~/Cyber" },
{ title = "Projects", path = "~/Projects" },
{ title = "NixOS Config", path = "~/.config/nixos" },
"trash",
]
'';
xdg.configFile."elio/theme.toml".text = '' xdg.configFile."elio/theme.toml".text = ''
[palette] [palette]
bg = "#${c.base00}" bg = "#${c.base00}"
+3 -2
View File
@@ -11,10 +11,11 @@
]; ];
home = { home = {
sessionPath = ["$HOME/go/bin"]; sessionPath = ["$HOME/.local/share/go/bin"];
sessionVariables = { sessionVariables = {
COLORTERM = "truecolor"; COLORTERM = "truecolor";
MANPAGER = "bat -l man -p"; MANPAGER = "bat -l man -p";
GOPATH = "$HOME/.local/share/go";
}; };
}; };
@@ -72,7 +73,7 @@
spt = "spotatui"; spt = "spotatui";
open = "${pkgs.xdg-utils}/bin/xdg-open"; open = "${pkgs.xdg-utils}/bin/xdg-open";
notes = "nvim ~/notes/index.md --cmd 'cd ~/notes' -c ':lua Snacks.picker.smart()'"; notes = "nvim ~/Notes/index.md --cmd 'cd ~/notes' -c ':lua Snacks.picker.smart()'";
# git # git
g = "lazygit"; g = "lazygit";
+5
View File
@@ -1,4 +1,5 @@
{ {
config,
lib, lib,
pkgs, pkgs,
... ...
@@ -147,6 +148,10 @@ in {
music = null; music = null;
publicShare = null; publicShare = null;
templates = null; templates = null;
extraConfig = {
NOTES = "${config.home.homeDirectory}/Notes";
CYBER = "${config.home.homeDirectory}/Cyber";
};
}; };
}; };
} }