feat(shell): set work browser via dotenv

This commit is contained in:
Felix Schröter 2021-05-05 00:10:35 +02:00
parent e684d5a347
commit a9975018f4
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -79,7 +79,12 @@ in {
enableNixDirenvIntegration = true; enableNixDirenvIntegration = true;
}; };
home.file.".envrc".text = '' # for .envrc's in child directories add "source_up"
# for them to pick up this config
home.file."dev/work/.envrc".text = ''
dotenv dotenv
''; '';
home.file."dev/work/.env".text = ''
BROWSER=firefox-work
'';
} }