nixos,core: remove default packages
This commit is contained in:
parent
55b8095a32
commit
71cff0a10d
1 changed files with 3 additions and 4 deletions
|
@ -11,9 +11,7 @@
|
|||
];
|
||||
|
||||
# Installed packages (System wide)
|
||||
environment = {
|
||||
#defaultPackages = [];
|
||||
};
|
||||
environment.defaultPackages = []; # make sure to add another editor and set the $EDITOR variable, in this case I am using neovim
|
||||
|
||||
users.mutableUsers = false;
|
||||
environment.etc.machine-id.text = "b08dfa6083e7567a1921a715000001fb"; # whonix id
|
||||
|
@ -25,11 +23,12 @@
|
|||
# Programs
|
||||
programs = {
|
||||
dconf.enable = true;
|
||||
nano.enable = false;
|
||||
neovim = {
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
defaultEditor = true; # default editor, does not seem to set the $EDITOR variable idk
|
||||
defaultEditor = true;
|
||||
};
|
||||
fish.enable = true;
|
||||
#zsh.enable = true;
|
||||
|
|
Loading…
Reference in a new issue