12 lines
213 B
Nix
12 lines
213 B
Nix
inputs:
|
|
let
|
|
mkHost = import ../mkHost.nix inputs;
|
|
in
|
|
mkHost {
|
|
system = "x86_64-linux";
|
|
hostname = "x1carbon";
|
|
username = "hare";
|
|
systemModules = [ ./nixos.nix ];
|
|
homeModule = [ ./home-manager.nix ];
|
|
}
|