mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
lowercase directories and nix-index
This commit is contained in:
parent
ed2b61b03f
commit
cc974cb013
@ -31,7 +31,7 @@
|
||||
gitEmail = "7386960+nmasur@users.noreply.github.com";
|
||||
gui = {
|
||||
colorscheme = (import ./modules/colorscheme/gruvbox);
|
||||
wallpaper = ../../../Downloads/nix.jpg;
|
||||
wallpaper = ../../../downloads/nix.jpg;
|
||||
gtkTheme = "Adwaita-dark";
|
||||
};
|
||||
};
|
||||
|
@ -68,6 +68,7 @@
|
||||
label-urgent = "%name%";
|
||||
label-urgent-foreground = config.gui.colorscheme.base00;
|
||||
label-urgent-background = config.gui.colorscheme.base08;
|
||||
label-urgent-underline = config.gui.colorscheme.base0F;
|
||||
label-urgent-padding = padding;
|
||||
};
|
||||
"module/xworkspaces" = {
|
||||
|
@ -21,7 +21,7 @@ end
|
||||
find_downloads = function()
|
||||
local opts = {
|
||||
prompt_title = "Find Downloads",
|
||||
cwd = "~/Downloads",
|
||||
cwd = "~/downloads",
|
||||
}
|
||||
require("telescope").extensions.file_browser.file_browser(opts)
|
||||
end
|
||||
|
@ -25,4 +25,3 @@
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -140,5 +140,12 @@
|
||||
programs.zoxide.enableFishIntegration = true;
|
||||
programs.fzf.enableFishIntegration = true;
|
||||
|
||||
# Provides "command-not-found" options
|
||||
# Requires activating a manual download
|
||||
programs.nix-index = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
@ -32,6 +32,22 @@
|
||||
|
||||
};
|
||||
|
||||
home-manager.users.${config.user}.xdg = {
|
||||
userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
documents = "$HOME/documents";
|
||||
download = "$HOME/downloads";
|
||||
music = "$HOME/media/music";
|
||||
pictures = "$HOME/media/images";
|
||||
videos = "$HOME/media/videos";
|
||||
desktop = "$HOME/other/desktop";
|
||||
publicShare = "$HOME/other/public";
|
||||
templates = "$HOME/other/templates";
|
||||
extraConfig = { XDG_DEV_DIR = "$HOME/dev"; };
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user