Add more server-centered modules for cli and networking
This commit is contained in:
parent
59620edd40
commit
5bb38778db
2 changed files with 27 additions and 0 deletions
9
modules/network-server.nix
Normal file
9
modules/network-server.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
networking = {
|
||||||
|
useDHCP = true;
|
||||||
|
};
|
||||||
|
}
|
18
modules/server-cli.nix
Normal file
18
modules/server-cli.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
wget
|
||||||
|
curl
|
||||||
|
git
|
||||||
|
|
||||||
|
btrfs-progs
|
||||||
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
htop.enable = true;
|
||||||
|
vim.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue