add wget, cleanup

This commit is contained in:
Patrick Neff 2024-09-01 15:06:36 +02:00
parent ca3df744ba
commit 5a4b306097
2 changed files with 15 additions and 12 deletions

View File

@ -1,21 +1,22 @@
{ config, lib, pkgs, vars, ... }:
{ pkgs, ... }:
{
environment = {
environment = {
systemPackages = with pkgs; [
vim
git
openssh
file
w3m
btop
iftop
iotop
ncdu
git
openssh
file
w3m
btop
iftop
iotop
ncdu
wget
];
etc = {
"ncdu.conf".text = ''
--color dark
'';
'';
};
};

View File

@ -12,7 +12,9 @@ in
defaultUser = username;
nativeSystemd = true;
useWindowsDriver = true;
wslConf = { network.hostname = hostName; };
wslConf = {
network.hostname = hostName;
};
};
};
}