Manage session variables with home-manager

If you haven't noticed, home-manager is managing increasingly more of my
configuration.

- Migrate session variables to home.nix
- Drop support for unused session variables like TERMINAL, VISUAL
This commit is contained in:
William Carroll 2020-03-10 22:08:42 +00:00
parent 82b2c8c27c
commit 3ae100e468
2 changed files with 3 additions and 7 deletions

View file

@ -23,6 +23,9 @@
];
};
sessionVariables = {
BROWSER = "google-chrome";
EDITOR = "emacsclient";
ALTERNATE_EDITOR = "vim";
};
stateVersion = "19.09";
};