server.nix/flake.nix

61 lines
1.6 KiB
Nix
Raw Normal View History

2024-02-23 01:56:51 +02:00
{
inputs = {
nixpkgs.url = "github:Nixos/nixpkgs/nixos-unstable";
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";
2025-01-24 19:45:07 +02:00
common-modules = {
url = "git+https://forge.catnip.ee/batteredbunny/common.nix";
2025-01-24 19:45:07 +02:00
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;
};
2025-04-27 14:01:32 +03:00
kaya-website = {
url = "git+ssh://forgejo@forge.catnip.ee:2222/batteredbunny/kaya.ee";
flake = false;
};
2024-02-23 01:56:51 +02:00
};
2024-05-02 14:09:52 +03:00
outputs =
{ self
, nixpkgs
, ...
} @ inputs: {
2025-04-19 04:23:06 +03:00
nixosConfigurations.server = nixpkgs.lib.nixosSystem {
2024-05-02 14:09:52 +03:00
system = "x86_64-linux";
2024-05-03 00:54:08 +03:00
specialArgs = {
2025-04-19 04:23:06 +03:00
inherit inputs self;
2024-05-03 00:54:08 +03:00
settings = import ./settings.nix { };
};
2024-05-02 14:09:52 +03:00
modules = [ ./configuration.nix ];
};
2024-02-23 01:56:51 +02:00
};
}