Files
nix-files/helpers/universal/default.nix
colin acf89605d1 correctly configure the EDITOR
N.B.: git is still using nano! wtf git?
2022-06-05 23:58:26 -07:00

19 lines
241 B
Nix

{ ... }:
{
imports = [
./fs.nix
./home-manager.nix
./nix-cache.nix
./users.nix
];
time.timeZone = "America/Los_Angeles";
# programs.vim.defaultEditor = true;
environment.variables = {
EDITOR = "vim";
};
}