nixos: system: packages: fix deprecated config
This commit is contained in:
parent
d04de7d213
commit
4de7886950
|
@ -14,12 +14,14 @@ in
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
wget
|
||||
];
|
||||
|
||||
programs = {
|
||||
vim.defaultEditor = true; # Modal editing is life
|
||||
vim = {
|
||||
enable = true;
|
||||
defaultEditor = true; # Modal editing is life
|
||||
};
|
||||
|
||||
zsh = {
|
||||
enable = true; # Use integrations
|
||||
|
|
Loading…
Reference in a new issue