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