Skip to content

Commit

Permalink
fix(nix-on-droid): reflect moved directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kojandy committed Jan 2, 2025
1 parent 79e6310 commit 9edab58
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions modules/nix-on-droid.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@

home-manager.config = { config, ... }: {
home.file = {
".profile".source = ../profile;
".zshrc".source = ../zsh/zshrc;
".profile".source = ../config/profile;
".zshrc".source = ../config/zsh/zshrc;
"Downloads".source = config.lib.file.mkOutOfStoreSymlink "/sdcard/Download";
};
xdg.configFile = {
"nvim".source = ../nvim;
"git".source = ../git;
"lf".source = ../lf;
"broot".source = ../broot;
"tmux".source = ../tmux;
"jj".source = ../jj;
"nvim".source = ../config/nvim;
"git".source = ../config/git;
"lf".source = ../config/lf;
"broot".source = ../config/broot;
"tmux".source = ../config/tmux;
"jj".source = ../config/jj;
};
home.stateVersion = "25.05";
home.enableNixpkgsReleaseCheck = false;
Expand Down

0 comments on commit 9edab58

Please sign in to comment.