nixos/systems/mobile/default.nix

13 lines
360 B
Nix
Raw Normal View History

2023-03-27 11:49:54 +02:00
{ custom, hostname }: { ... }:
{
imports = [
(import "${custom.inputs.self}/systems/raspi4" {
ip = "10.7.89.150";
inherit custom hostname;
})
(import "${custom.inputs.self}/modules/docker" { inherit custom; })
(import "${custom.inputs.self}/modules/nix-direnv" { inherit custom; })
"${custom.inputs.self}/modules/tmux"
];
}