move akkoma-static into differente repo

This commit is contained in:
Daniel Kauss Serna 2026-07-03 17:39:15 +02:00
parent 63444f2728
commit d3adacad2d
14 changed files with 62 additions and 109 deletions

View file

@ -3,14 +3,21 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
akkoma-static = {
url = "git+https://git.danielk.me/daniel_kauss/akkoma-static.git";
flake = false;
};
};
outputs = { self, nixpkgs, ... }:
outputs = inputs@{ self, nixpkgs, ... }:
let
system = "x86_64-linux";
in {
nixosConfigurations.server = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
};
modules = [
./configuration.nix
];