Compare commits

..

No commits in common. "923ca6cd9a7de3a4a1ebb0ac57b0ec8c6ae08a56" and "2e288c94f9e0a4ded90d65afd0dc863fefc67ab1" have entirely different histories.

2 changed files with 9 additions and 20 deletions

2
.gitignore vendored
View file

@ -1,2 +0,0 @@
result
result-*

View file

@ -2,7 +2,6 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs, ... }: let outputs = { self, nixpkgs, ... }: let
inherit (nixpkgs) lib; inherit (nixpkgs) lib;
eachSystem = lib.genAttrs [ "x86_64-linux" "aarch64-linux" ];
in { in {
nixosModules = { nixosModules = {
default = import ./module.nix; default = import ./module.nix;
@ -11,23 +10,15 @@
}; };
}; };
nixosConfigurations = eachSystem (system: lib.nixosSystem { checks = lib.genAttrs [ "x86_64-linux" "aarch64-linux" ] (system: {
inherit system; default = (lib.nixosSystem {
modules = [ { inherit system;
system.stateVersion = "24.11"; modules = [ {
fileSystems."/".device = "nodev"; system.stateVersion = "24.11";
boot.loader.grub.enable = false; fileSystems."/".device = "nodev";
services.akkoma.enable = true; boot.loader.grub.enable = false;
services.akkoma.config.":pleroma".":instance" = { } ] ++ (with self.nixosModules; [ default florp ]);
name = "test"; }).config.system.build.toplevel;
description = "test";
email = "test@test.test";
};
} ] ++ (with self.nixosModules; [ default florp ]);
});
checks = eachSystem (system: {
default = self.nixosConfigurations.${system}.config.system.build.toplevel;
}); });
}; };
} }