mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
home: fix path copy-to-store
This commit is contained in:
parent
1b739cedf1
commit
875f7e7d4b
8 changed files with 15 additions and 15 deletions
|
|
@ -6,7 +6,7 @@
|
|||
}: let
|
||||
cfg = config.programs.fish;
|
||||
|
||||
fishExe = "${lib.getExe cfg.package}";
|
||||
fishExe = lib.getExe cfg.package;
|
||||
in {
|
||||
imports = [
|
||||
./aliasesAbbrs.nix
|
||||
|
|
@ -15,7 +15,7 @@ in {
|
|||
#
|
||||
# tmux sessionizer
|
||||
#
|
||||
home.sessionVariables = lib.mapAttrs (_: path: "${config.home.homeDirectory}/${path}") {
|
||||
home.sessionVariables = lib.mapAttrs (_: path: config.home.homeDirectory + "/${path}") {
|
||||
REPO_PATH = "r";
|
||||
PLAYGROUND_PATH = "pg";
|
||||
WORKTREE_PATH = "wt";
|
||||
|
|
@ -55,9 +55,7 @@ in {
|
|||
xdg.configFile =
|
||||
lib.mapAttrs'
|
||||
(path: _:
|
||||
lib.nameValuePair
|
||||
"fish/functions/${path}"
|
||||
{source = lib.path.append ./functions path;})
|
||||
lib.nameValuePair "fish/functions/${path}" {source = "${./functions}/${path}";})
|
||||
(builtins.readDir ./functions);
|
||||
|
||||
programs.fish = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue