1
0
Fork 0
nixos/machines/Leviathan/configuration.nix

27 lines
424 B
Nix

{
confPath = ./Leviathan.nix;
pkgs = [
"base"
"emacs"
"haskell"
"python3"
"rustpkgs"
"xpkgs"
];
services = [
../../services/openssh.nix
../../services/xserver.nix
];
conf = {
allowUnfree = true;
networking = {
hostName = "Leviathan";
firewall = {
allowPing = true;
allowedUDPPorts = [ 22 ];
allowedTCPPorts = [];
};
};
};
}