2024-02-23 01:56:51 +02:00
|
|
|
{
|
|
|
|
inputs = {
|
2024-11-30 16:50:43 +02:00
|
|
|
nixpkgs.url = "github:Nixos/nixpkgs/nixos-unstable";
|
2024-11-15 23:20:20 +02:00
|
|
|
nix-minecraft-plugin-upgrade.url = "github:BatteredBunny/nix-minecraft-plugin-upgrade";
|
2024-02-23 01:56:51 +02:00
|
|
|
nix-minecraft.url = "github:Infinidoge/nix-minecraft";
|
2024-11-30 16:50:43 +02:00
|
|
|
|
2025-01-24 19:45:07 +02:00
|
|
|
common-modules = {
|
|
|
|
url = "git+https://forge.catnip.ee/batteredbunny/common.nix?ref=cross-seed";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2024-02-23 01:56:51 +02:00
|
|
|
};
|
2024-03-29 22:56:23 +02:00
|
|
|
|
2025-01-24 19:45:07 +02:00
|
|
|
drasl = {
|
|
|
|
url = "github:unmojang/drasl";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
confess = {
|
|
|
|
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/confess";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
lastfm-status = {
|
|
|
|
url = "github:BatteredBunny/lastfm-status";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
youtuee = {
|
|
|
|
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/youtuee";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Websites
|
|
|
|
catnip-website = {
|
|
|
|
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/catnip.ee";
|
2024-11-27 19:12:36 +02:00
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
|
2024-11-12 18:10:07 +02:00
|
|
|
bsky-website = {
|
|
|
|
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/bsky.ee";
|
|
|
|
flake = false;
|
|
|
|
};
|
2024-02-23 01:56:51 +02:00
|
|
|
};
|
|
|
|
|
2024-05-02 14:09:52 +03:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, nixpkgs
|
|
|
|
, ...
|
|
|
|
} @ inputs: {
|
|
|
|
nixosConfigurations.server = nixpkgs.lib.nixosSystem rec {
|
|
|
|
system = "x86_64-linux";
|
2024-05-03 00:54:08 +03:00
|
|
|
specialArgs = {
|
|
|
|
inherit inputs system;
|
|
|
|
settings = import ./settings.nix { };
|
|
|
|
};
|
2024-05-02 14:09:52 +03:00
|
|
|
modules = [ ./configuration.nix ];
|
|
|
|
};
|
2024-02-23 01:56:51 +02:00
|
|
|
};
|
|
|
|
}
|