clean up some things
This commit is contained in:
parent
73f349ccf1
commit
a5602a3bb5
@ -6,8 +6,8 @@
|
||||
./nvidia.nix
|
||||
./services
|
||||
../../config/copernicus.nix
|
||||
../../modules/hosts.nix
|
||||
../../modules/bootstrap.nix
|
||||
../../lib/hosts.nix
|
||||
../../lib/bootstrap.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
@ -1,23 +1,21 @@
|
||||
{ lib, config, pkgs, machines, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
../../modules/bootstrap.nix
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
../../lib/bootstrap.nix
|
||||
|
||||
./radicale.nix
|
||||
./ssh.nix
|
||||
./gitea.nix
|
||||
./radicale.nix
|
||||
./vaultwarden.nix
|
||||
./sslh.nix
|
||||
./nginx.nix
|
||||
./franklincce.nix
|
||||
./wireguard.nix
|
||||
./nextcloud.nix
|
||||
./mail.nix
|
||||
];
|
||||
./franklincce.nix
|
||||
./gitea.nix
|
||||
./mail.nix
|
||||
./nextcloud.nix
|
||||
./nginx.nix
|
||||
./radicale.nix
|
||||
./ssh.nix
|
||||
./sslh.nix
|
||||
./vaultwarden.nix
|
||||
./wireguard.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
optimise = {
|
||||
|
@ -18,21 +18,21 @@
|
||||
nixosConfigurations = {
|
||||
netbox = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; } // { machines = import ./machines.nix; };
|
||||
specialArgs = { inherit inputs; } // { machines = import ./lib/machines.nix; };
|
||||
modules = [
|
||||
./boxes/netbox
|
||||
];
|
||||
};
|
||||
copernicus = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; } // { machines = import ./machines.nix; };
|
||||
specialArgs = { inherit inputs; } // { machines = import ./lib/machines.nix; };
|
||||
modules = [
|
||||
./boxes/copernicus
|
||||
];
|
||||
};
|
||||
aristotle = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; } // { machines = import ./machines.nix; };
|
||||
specialArgs = { inherit inputs; } // { machines = import ./lib/machines.nix; };
|
||||
modules = [
|
||||
./lappy/configuration.nix
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user