mirror of https://gitlab.crans.org/nounous/nixos
fixing hostname and adding basic utilities
parent
cab79a306f
commit
ebccd21bb2
|
@ -8,6 +8,7 @@
|
||||||
../../../modules
|
../../../modules
|
||||||
];
|
];
|
||||||
|
|
||||||
|
networking.hostName = "two";
|
||||||
boot.loader.grub.devices = [ "/dev/sda" ];
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
||||||
|
|
||||||
system.stateVersion = "23.11";
|
system.stateVersion = "23.11";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -6,6 +6,7 @@
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./ntp.nix
|
./ntp.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
|
./home.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
services.qemuGuest.enable = true;
|
services.qemuGuest.enable = true;
|
||||||
|
@ -14,4 +15,12 @@
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Enable some utility programs.
|
||||||
|
programs.neovim.enable = true;
|
||||||
|
programs.git.enable = true;
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
shelldap
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue