29 lines
579 B
Nix
29 lines
579 B
Nix
|
{ withSystem, ... }:
|
||
|
|
||
|
let
|
||
|
name = "skills";
|
||
|
in
|
||
|
{
|
||
|
perSystem =
|
||
|
{ pkgs, ... }:
|
||
|
{
|
||
|
packages.${name} = pkgs.writeShellApplication {
|
||
|
inherit name;
|
||
|
|
||
|
runtimeInputs = with pkgs; [ coreutils ];
|
||
|
|
||
|
text = ''"$EDITOR" +2 "$SKILLS_FILE"'';
|
||
|
};
|
||
|
};
|
||
|
|
||
|
flake.modules.homeManager.base =
|
||
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
home.packages = [
|
||
|
(withSystem pkgs.system (psArgs: psArgs.config.packages.${name}))
|
||
|
];
|
||
|
|
||
|
home.sessionVariables.SKILLS_FILE = "${config.home.sessionVariables.NOTES_DIRECTORY}/2-areas/skills.csv";
|
||
|
};
|
||
|
}
|