Compare commits
2 Commits
a2c3d7d10b
...
5a4b306097
| Author | SHA1 | Date |
|---|---|---|
|
|
5a4b306097 | |
|
|
ca3df744ba |
|
|
@ -1,7 +1,4 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
let
|
||||
catppuccin = pkgs.callPackage ../../../../pkgs/tmuxPlugins/catppuccin.nix {};
|
||||
in
|
||||
{
|
||||
options = {
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
'';
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,9 @@ in
|
|||
defaultUser = username;
|
||||
nativeSystemd = true;
|
||||
useWindowsDriver = true;
|
||||
wslConf = { network.hostname = hostName; };
|
||||
wslConf = {
|
||||
network.hostname = hostName;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue