mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-06 16:12:33 +02:00
@@ -49,6 +49,9 @@ in {
|
||||
'';
|
||||
|
||||
shellAliases = {
|
||||
s = "superfile";
|
||||
spf = "superfile";
|
||||
|
||||
vim = "nvim";
|
||||
vi = "nvim";
|
||||
v = "nvim";
|
||||
|
||||
@@ -1,8 +1,34 @@
|
||||
{
|
||||
{config, ...}: {
|
||||
xdg.userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
desktop = "${config.home.homeDirectory}/Desktop";
|
||||
download = "${config.home.homeDirectory}/Downloads";
|
||||
pictures = "${config.home.homeDirectory}/Pictures";
|
||||
music = null;
|
||||
documents = null;
|
||||
videos = null;
|
||||
templates = null;
|
||||
publicShare = null;
|
||||
};
|
||||
|
||||
programs.superfile = {
|
||||
enable = true;
|
||||
firstUseCheck = false;
|
||||
pinnedFolders = [];
|
||||
pinnedFolders = [
|
||||
{
|
||||
name = "dev";
|
||||
location = "/home/hadrien/dev";
|
||||
}
|
||||
{
|
||||
name = "nixos";
|
||||
location = "/home/hadrien/.config/nixos";
|
||||
}
|
||||
{
|
||||
name = "trash";
|
||||
location = "/home/hadrien/.local/share/Trash/files";
|
||||
}
|
||||
];
|
||||
settings = {
|
||||
transparent_background = true;
|
||||
ignore_missing_fields = true;
|
||||
|
||||
Reference in New Issue
Block a user