Remove unused systems

This commit is contained in:
Andreas Zweili 2022-09-06 20:27:11 +02:00
parent 85a06a9233
commit 617abd75a0
3 changed files with 0 additions and 40 deletions

View File

@ -81,10 +81,6 @@
hostname = "git";
inherit custom pkgs inputs;
};
jdownloader = mkComputer {
hostname = "jdownloader";
inherit custom pkgs inputs;
};
mail = mkComputer {
hostname = "mail";
inherit custom pkgs inputs;
@ -93,11 +89,6 @@
hostname = "nextcloud";
inherit custom pkgs inputs;
};
nixos-management = mkComputer {
hostname = "nixos-management";
home-module = "management";
inherit custom pkgs inputs;
};
pihole = mkComputer {
hostname = "pihole";
inherit custom pkgs inputs;

View File

@ -1,12 +0,0 @@
{ config, custom, inputs, pkgs, ... }:
{
imports = [
(import "${inputs.self}/systems/proxmox-vm" {
hostname = "jdownloader";
ip = "10.7.89.110";
inherit inputs;
})
"${inputs.self}/modules/docker"
"${inputs.self}/modules/jdownloader"
];
}

View File

@ -1,19 +0,0 @@
{ 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;
})
"${inputs.self}/modules/code-server"
"${inputs.self}/modules/docker"
"${inputs.self}/modules/nix-direnv"
"${inputs.self}/modules/tmux"
];
# Required to build aarch64 packages
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
}