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