81564185e9
git-subtree-dir: users/glittershark/system git-subtree-mainline:85d82a9dc2
git-subtree-split:3b174300ae
11 lines
195 B
Nix
11 lines
195 B
Nix
{ config, pkgs, ... }:
|
|
|
|
let machine = throw "Pick a machine from ./machines"; in
|
|
{
|
|
imports =
|
|
[
|
|
/etc/nixos/hardware-configuration.nix
|
|
./modules/common.nix
|
|
machine
|
|
];
|
|
}
|