31 lines
493 B
Nix
31 lines
493 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./gpu-configuration.nix
|
|
../../configuration.nix
|
|
|
|
./home.nix
|
|
|
|
./services.nix
|
|
];
|
|
|
|
users.users."guz" = {
|
|
openssh.authorizedKeys.keyFiles = [
|
|
../../.ssh/guz-battleship.pub
|
|
];
|
|
};
|
|
|
|
# Network
|
|
networking = {
|
|
hostName = lib.mkForce "battleship";
|
|
nameservers = ["192.168.0.110"];
|
|
#wireless.enable = lib.mkForce true;
|
|
};
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
}
|