18 lines
219 B
Nix
18 lines
219 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../default-machine-config.nix
|
|
];
|
|
|
|
custom.machine = {
|
|
type = "pc";
|
|
capabilities = [
|
|
"cli"
|
|
];
|
|
homeOnly = "jana";
|
|
};
|
|
}
|