nixos/systems/nixos-management/default.nix

20 lines
571 B
Nix
Raw Normal View History

2022-02-28 20:50:25 +01:00
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "nixos-management";
ip = "10.7.89.150";
inherit inputs;
})
(import "${inputs.self}/modules/restic-server-client" {
time = "21:30"; inherit config custom inputs pkgs;
})
2022-02-28 21:42:33 +01:00
"${inputs.self}/modules/code-server"
"${inputs.self}/modules/docker"
2022-03-01 10:11:06 +01:00
"${inputs.self}/modules/nix-direnv"
2022-06-20 21:06:55 +02:00
"${inputs.self}/modules/tmux"
2022-02-28 20:50:25 +01:00
];
2022-06-27 15:06:56 +02:00
# Required to build aarch64 packages
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
2022-02-28 20:50:25 +01:00
}