Compare commits

...

2 Commits

Author SHA1 Message Date
Patrick Neff 5a4b306097 add wget, cleanup 2024-09-01 15:06:36 +02:00
Patrick Neff ca3df744ba remove custom catppucin theme 2024-09-01 15:05:55 +02:00
3 changed files with 15 additions and 15 deletions

View File

@ -1,7 +1,4 @@
{ pkgs, lib, config, ... }: { pkgs, lib, config, ... }:
let
catppuccin = pkgs.callPackage ../../../../pkgs/tmuxPlugins/catppuccin.nix {};
in
{ {
options = { options = {

View File

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

View File

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