add notes path

This commit is contained in:
Noah Masur 2022-04-23 16:27:17 +00:00
parent addc286bf2
commit 7312243963
2 changed files with 2 additions and 2 deletions

View File

@ -180,8 +180,6 @@
playerctl playerctl
# i3blocks # i3blocks
polybar polybar
st # alt terminal
kitty # alt terminal
# Mouse config # Mouse config
libratbag libratbag

View File

@ -7,6 +7,7 @@ let
font = "Victor Mono"; font = "Victor Mono";
dotfiles = builtins.toString ../.; dotfiles = builtins.toString ../.;
nixos_config = builtins.toString ./.; nixos_config = builtins.toString ./.;
notes_path = "$HOME/dev/personal/notes";
in { in {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
@ -248,6 +249,7 @@ in {
EDITOR = "${editor}"; EDITOR = "${editor}";
NIXOS_CONFIG = "${nixos_config}"; NIXOS_CONFIG = "${nixos_config}";
DOTS = "${dotfiles}"; DOTS = "${dotfiles}";
NOTES_PATH = "${notes_path}";
}; };
programs.starship = { programs.starship = {