mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
Change pinned folders
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
@@ -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}"
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
@@ -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";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user