fixing hostname and adding basic utilities

cephiroth
aeltheos 2024-02-05 22:08:29 +01:00
parent cab79a306f
commit ebccd21bb2
2 changed files with 11 additions and 1 deletions

View File

@ -8,6 +8,7 @@
../../../modules
];
networking.hostName = "two";
boot.loader.grub.devices = [ "/dev/sda" ];
system.stateVersion = "23.11";

View File

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
imports = [
@ -6,6 +6,7 @@
./networking.nix
./ntp.nix
./users.nix
./home.nix
];
services.qemuGuest.enable = true;
@ -14,4 +15,12 @@
services.openssh = {
enable = true;
};
# Enable some utility programs.
programs.neovim.enable = true;
programs.git.enable = true;
environment.systemPackages = with pkgs; [
shelldap
];
}