Add Zoxide, change to Shotman, simplify xdg folders, enable libvirt on Jupiter, fix networking and such
This commit is contained in:
parent
d9e30cd69e
commit
26350d1de4
14 changed files with 28 additions and 56 deletions
|
@ -15,6 +15,7 @@
|
|||
./ranger
|
||||
./tmux
|
||||
./yt-dlp
|
||||
./zoxide
|
||||
./zsh
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
programs.nix-index.enable = true;
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".cache/nix-index" ];
|
||||
}
|
||||
|
|
|
@ -97,15 +97,17 @@
|
|||
file = {
|
||||
".local/share/ranger/bookmarks".text = ''
|
||||
# Local files
|
||||
h:${config.home.homeDirectory}/
|
||||
h:${config.home.homeDirectory}
|
||||
k:${config.home.homeDirectory}/Keepers
|
||||
j:${config.home.homeDirectory}/Downloads
|
||||
j:${config.home.homeDirectory}/Documents
|
||||
p:${config.home.homeDirectory}/Photos
|
||||
v:${config.home.homeDirectory}/Videos
|
||||
n:${config.home.homeDirectory}/Projects/nixos-config
|
||||
c:${config.home.homeDirectory}/.config
|
||||
l:${config.home.homeDirectory}/.local
|
||||
d:/mnt
|
||||
p:/persist
|
||||
q:/persist
|
||||
w:/mnt
|
||||
|
||||
# Remote files
|
||||
N:${config.home.homeDirectory}/Network
|
||||
|
|
6
modules/home/programs/terminal/zoxide/default.nix
Normal file
6
modules/home/programs/terminal/zoxide/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
programs.zoxide.enable = true;
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".local/share/zoxide" ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue