Add configuration for backup raspberry

This commit is contained in:
JuliusFreudenberger 2025-01-18 20:48:49 +02:00
parent 94a8332605
commit 927cd07d84
4 changed files with 123 additions and 0 deletions

View file

@ -72,7 +72,19 @@
home-manager.users.${username} = import ./users/${username}/home.nix;
}
];
};
backup-raspberrypi = nixpkgs.lib.nixosSystem rec {
system = "aarch64";
specialArgs = {
inherit inputs outputs;
};
modules = [
nixos-hardware.nixosModules.raspberry-pi-4
./hosts/backup-raspberrypi
];
};
};
};