16 lines
236 B
Nix
16 lines
236 B
Nix
inputs:
|
|
let
|
|
mkHost = import ../mkHost.nix inputs;
|
|
in
|
|
mkHost {
|
|
system = "x86_64-linux";
|
|
hostname = "Fungus";
|
|
users = [
|
|
{
|
|
username = "hare";
|
|
homeModule = [ ./hare ];
|
|
}
|
|
];
|
|
systemModules = [ ./nixos.nix ];
|
|
}
|