nixos: system: packages: remove 'wget'

This commit is contained in:
Bruno BELANYI 2024-11-28 19:58:50 +00:00
parent 98c90d77c5
commit c74acda957

View file

@ -1,5 +1,5 @@
# Common packages
{ config, lib, pkgs, ... }:
{ config, lib, ... }:
let
cfg = config.my.system.packages;
in
@ -13,10 +13,6 @@ in
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
wget
];
programs = {
vim = {
enable = true;