server.nix/flake.nix

47 lines
1.3 KiB
Nix
Raw Normal View History

2024-02-23 01:56:51 +02:00
{
inputs = {
2024-11-01 19:29:28 +02:00
nixpkgs.url = "github:t4ccer/nixpkgs/t4/pbs/init-0-4-59";
# nixpkgs.url = "github:Nixos/nixpkgs/nixos-unstable";
2024-02-23 01:56:51 +02:00
lastfm-status.url = "github:BatteredBunny/lastfm-status";
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-27 19:12:36 +02:00
2024-02-23 01:56:51 +02:00
catnip-website = {
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/catnip.ee";
flake = false;
};
2024-03-29 22:56:23 +02:00
2024-11-27 19:12:36 +02:00
xn--tdaa-website = {
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/xn--tdaa.ee";
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;
};
common-modules = {
url = "git+https://forge.catnip.ee/batteredbunny/common.nix?ref=cross-seed";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-06-08 16:41:43 +03:00
confess.url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/confess";
drasl.url = "github:unmojang/drasl";
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
};
}