2022-01-14 09:19:01 +00:00
|
|
|
rec {
|
|
|
|
description = "Lotte's NixOS installation";
|
|
|
|
|
|
|
|
# Use NixOS unstable
|
2022-03-05 20:39:49 +00:00
|
|
|
inputs = {
|
2022-12-13 09:00:47 +00:00
|
|
|
# Sorted by name
|
2023-11-22 09:17:21 +00:00
|
|
|
admin-fe = {
|
|
|
|
url = "github:DarkKirb/admin-fe";
|
|
|
|
inputs.devshell.follows = "devshell";
|
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
akkoma = {
|
|
|
|
url = "github:DarkKirb/akkoma";
|
|
|
|
inputs.devshell.follows = "devshell";
|
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
akkoma-fe = {
|
|
|
|
url = "github:DarkKirb/akkoma-fe";
|
|
|
|
inputs.devshell.follows = "devshell";
|
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-12-18 09:14:07 +00:00
|
|
|
attic = {
|
|
|
|
url = "github:DarkKirb/attic";
|
|
|
|
inputs.cargo2nix.follows = "cargo2nix";
|
|
|
|
inputs.crane.follows = "crane";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.rust-overlay.follows = "rust-overlay";
|
|
|
|
};
|
|
|
|
cargo2nix = {
|
|
|
|
url = "github:DarkKirb/cargo2nix/release-0.11.0";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2024-06-01 08:21:16 +00:00
|
|
|
#inputs.rust-overlay.follows = "rust-overlay";
|
2023-12-18 09:14:07 +00:00
|
|
|
};
|
2024-03-31 08:50:50 +00:00
|
|
|
colorpickle = {
|
|
|
|
url = "github:AgathaSorceress/colorpickle";
|
|
|
|
inputs.naersk.follows = "naersk";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.utils.follows = "flake-utils";
|
|
|
|
};
|
2023-12-18 09:14:07 +00:00
|
|
|
crane = {
|
|
|
|
url = "github:DarkKirb/crane";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.rust-overlay.follows = "rust-overlay";
|
|
|
|
};
|
2023-12-12 18:08:40 +00:00
|
|
|
devshell = {
|
2023-11-18 07:12:28 +00:00
|
|
|
url = "github:numtide/devshell";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-12-13 09:00:47 +00:00
|
|
|
dns = {
|
|
|
|
url = "github:DarkKirb/dns.nix";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-04-27 05:56:45 +00:00
|
|
|
element-web = {
|
|
|
|
url = "github:DarkKirb/element-web";
|
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.matrix-react-sdk.follows = "matrix-react-sdk";
|
|
|
|
inputs.matrix-js-sdk.follows = "matrix-js-sdk";
|
|
|
|
inputs.devshell.follows = "devshell";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
};
|
2023-10-10 08:14:59 +00:00
|
|
|
firefox = {
|
|
|
|
url = "github:nix-community/flake-firefox-nightly";
|
|
|
|
inputs.cachix.follows = "nixpkgs";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
inputs.lib-aggregate.follows = "lib-aggregate";
|
|
|
|
inputs.mozilla.follows = "mozilla";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
flake-parts = {
|
|
|
|
url = "github:hercules-ci/flake-parts";
|
|
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
flake-utils = {
|
|
|
|
url = "github:numtide/flake-utils";
|
|
|
|
inputs.systems.follows = "systems";
|
|
|
|
};
|
2024-04-26 09:26:26 +00:00
|
|
|
gomod2nix = {
|
|
|
|
url = "github:DarkKirb/gomod2nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.utils.follows = "flake-utils";
|
|
|
|
};
|
2022-12-13 09:00:47 +00:00
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-12-09 10:02:48 +00:00
|
|
|
hydra = {
|
2023-12-20 11:15:13 +00:00
|
|
|
url = "github:DarkKirb/hydra";
|
2024-02-29 06:32:03 +00:00
|
|
|
#inputs.nixpkgs.follows = "nixpkgs";
|
2023-12-09 10:02:48 +00:00
|
|
|
};
|
2024-04-13 11:31:08 +00:00
|
|
|
impermanence = {
|
|
|
|
url = "github:nix-community/impermanence";
|
|
|
|
};
|
2023-10-10 08:14:59 +00:00
|
|
|
lib-aggregate = {
|
|
|
|
url = "github:nix-community/lib-aggregate";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
};
|
2024-05-06 15:16:37 +00:00
|
|
|
lix = {
|
|
|
|
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
lix-module = {
|
|
|
|
url = "git+https://git.lix.systems/lix-project/nixos-module";
|
|
|
|
inputs.lix.follows = "lix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
};
|
2024-04-27 05:56:45 +00:00
|
|
|
matrix-react-sdk = {
|
|
|
|
url = "github:DarkKirb/matrix-react-sdk";
|
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.matrix-js-sdk.follows = "matrix-js-sdk";
|
|
|
|
inputs.devshell.follows = "devshell";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
};
|
|
|
|
matrix-js-sdk = {
|
|
|
|
url = "github:DarkKirb/matrix-js-sdk";
|
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.devshell.follows = "devshell";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
|
|
|
};
|
2023-10-10 08:14:59 +00:00
|
|
|
mozilla.url = "github:mozilla/nixpkgs-mozilla";
|
2024-03-31 08:50:50 +00:00
|
|
|
naersk = {
|
|
|
|
url = "github:nix-community/naersk/master";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-10-30 06:10:57 +00:00
|
|
|
nix-gaming = {
|
|
|
|
url = "github:fufexan/nix-gaming";
|
2024-04-06 17:58:02 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2023-10-30 06:10:57 +00:00
|
|
|
inputs.flake-parts.follows = "flake-parts";
|
|
|
|
};
|
2023-04-13 06:57:08 +00:00
|
|
|
nix-neovim = {
|
|
|
|
url = "github:syberant/nix-neovim";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-06-12 15:42:42 +00:00
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
2023-12-07 18:16:47 +00:00
|
|
|
nixos-vscode-server = {
|
|
|
|
url = "github:nix-community/nixos-vscode-server";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-11-15 06:14:06 +00:00
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
2023-12-18 09:14:07 +00:00
|
|
|
rust-overlay = {
|
|
|
|
url = "github:oxalica/rust-overlay";
|
|
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-12-13 09:00:47 +00:00
|
|
|
sops-nix = {
|
|
|
|
url = "github:Mic92/sops-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.nixpkgs-stable.follows = "nixpkgs";
|
|
|
|
};
|
2023-10-10 08:14:59 +00:00
|
|
|
systems.url = "github:nix-systems/default";
|
2022-03-05 20:39:49 +00:00
|
|
|
};
|
2022-01-14 09:19:01 +00:00
|
|
|
|
2022-06-12 15:39:15 +00:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
sops-nix,
|
|
|
|
home-manager,
|
|
|
|
...
|
|
|
|
} @ args: let
|
|
|
|
systems = [
|
|
|
|
{
|
|
|
|
name = "nixos-8gb-fsn1-1"; # Hetzner Server
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "thinkrac"; # Thinkpad T470
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "nas"; # My nas
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
2023-03-18 09:11:05 +00:00
|
|
|
{
|
|
|
|
name = "installer"; # Installer iso
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
|
|
|
{
|
2022-12-13 20:20:34 +00:00
|
|
|
name = "instance-20221213-1915"; # Oracle server
|
|
|
|
system = "aarch64-linux";
|
2022-12-12 17:42:01 +00:00
|
|
|
}
|
2023-12-06 13:00:26 +00:00
|
|
|
{
|
|
|
|
name = "rainbow-resort"; # PC
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
2022-06-12 15:39:15 +00:00
|
|
|
];
|
2024-04-26 09:26:26 +00:00
|
|
|
mkPackages = system: let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
overlays = [
|
|
|
|
args.gomod2nix.overlays.default
|
|
|
|
self.overlays.${system}
|
|
|
|
];
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
neovim-base = args.nix-neovim.buildNeovim {
|
|
|
|
inherit pkgs;
|
|
|
|
configuration = import ./config/programs/vim/configuration.nix false;
|
|
|
|
};
|
|
|
|
neovim = args.nix-neovim.buildNeovim {
|
|
|
|
inherit pkgs;
|
|
|
|
configuration = import ./config/programs/vim/configuration.nix true;
|
|
|
|
};
|
|
|
|
inherit
|
|
|
|
(pkgs)
|
|
|
|
emoji-lotte
|
|
|
|
emoji-volpeon-blobfox
|
|
|
|
emoji-volpeon-blobfox-flip
|
|
|
|
emoji-volpeon-bunhd
|
|
|
|
emoji-volpeon-bunhd-flip
|
|
|
|
emoji-volpeon-drgn
|
|
|
|
emoji-volpeon-fox
|
|
|
|
emoji-volpeon-gphn
|
|
|
|
emoji-volpeon-raccoon
|
|
|
|
emoji-volpeon-vlpn
|
|
|
|
emoji-volpeon-neofox
|
|
|
|
emoji-volpeon-neocat
|
2024-05-06 08:37:16 +00:00
|
|
|
emoji-volpeon-floof
|
2024-05-18 15:09:40 +00:00
|
|
|
emoji-rosaflags
|
|
|
|
emoji-raccoon
|
2024-04-26 09:26:26 +00:00
|
|
|
emoji-caro
|
|
|
|
lotte-art
|
|
|
|
alco-sans
|
|
|
|
constructium
|
|
|
|
fairfax
|
|
|
|
fairfax-hd
|
|
|
|
kreative-square
|
|
|
|
nasin-nanpa
|
|
|
|
matrix-media-repo
|
|
|
|
mautrix-discord
|
|
|
|
mautrix-whatsapp
|
|
|
|
mautrix-telegram
|
|
|
|
python-mautrix
|
|
|
|
python-tulir-telethon
|
|
|
|
papermc
|
|
|
|
python-plover-stroke
|
|
|
|
python-rtf-tokenize
|
|
|
|
plover
|
|
|
|
plover-plugins-manager
|
|
|
|
python-simplefuzzyset
|
|
|
|
plover-plugin-emoji
|
|
|
|
plover-plugin-tapey-tape
|
|
|
|
plover-plugin-yaml-dictionary
|
|
|
|
plover-plugin-machine-hid
|
|
|
|
plover-plugin-rkb1-hid
|
|
|
|
plover-plugin-dotool-output
|
|
|
|
plover-dict-didoesdigital
|
|
|
|
miifox-net
|
|
|
|
old-homepage
|
|
|
|
plover-plugin-python-dictionary
|
|
|
|
plover-plugin-stenotype-extended
|
|
|
|
asar-asm
|
|
|
|
bsnes-plus
|
|
|
|
sliding-sync
|
|
|
|
yiffstash
|
|
|
|
plover-plugin-dict-commands
|
|
|
|
plover-plugin-last-translation
|
|
|
|
plover-plugin-modal-dictionary
|
|
|
|
plover-plugin-stitching
|
|
|
|
plover-plugin-lapwing-aio
|
|
|
|
;
|
|
|
|
};
|
2022-06-12 15:39:15 +00:00
|
|
|
in rec {
|
|
|
|
nixosConfigurations = builtins.listToAttrs (map
|
|
|
|
({
|
|
|
|
name,
|
|
|
|
system,
|
2022-12-18 13:54:23 +00:00
|
|
|
configName ? name,
|
2022-06-12 15:39:15 +00:00
|
|
|
}: {
|
|
|
|
inherit name;
|
|
|
|
value =
|
|
|
|
nixpkgs.lib.nixosSystem
|
|
|
|
{
|
|
|
|
inherit system;
|
|
|
|
specialArgs =
|
|
|
|
args
|
|
|
|
// {
|
2022-02-08 21:01:33 +00:00
|
|
|
inherit system;
|
2022-06-12 15:39:15 +00:00
|
|
|
};
|
|
|
|
modules = [
|
2022-12-18 13:54:23 +00:00
|
|
|
(./config + "/${configName}.nix")
|
2022-06-12 15:39:15 +00:00
|
|
|
./config/default.nix
|
|
|
|
sops-nix.nixosModules.sops
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
({pkgs, ...}: {
|
2022-07-06 18:25:34 +00:00
|
|
|
home-manager.extraSpecialArgs = args // {inherit system;};
|
2022-06-12 15:39:15 +00:00
|
|
|
})
|
|
|
|
(import utils/link-input.nix args)
|
2024-05-06 15:16:37 +00:00
|
|
|
args.lix-module.nixosModules.default
|
2022-06-12 15:39:15 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
})
|
|
|
|
systems);
|
2022-12-18 12:15:23 +00:00
|
|
|
overlays = {
|
|
|
|
x86_64-linux = import ./overlays args "x86_64-linux";
|
|
|
|
aarch64-linux = import ./overlays args "aarch64-linux";
|
|
|
|
};
|
2022-06-12 15:39:15 +00:00
|
|
|
devShell.x86_64-linux = let
|
2022-12-18 12:15:23 +00:00
|
|
|
pkgs = import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
2024-04-26 09:26:26 +00:00
|
|
|
overlays = [
|
|
|
|
args.gomod2nix.overlays.default
|
|
|
|
self.overlays.x86_64-linux
|
|
|
|
];
|
2022-12-18 12:15:23 +00:00
|
|
|
};
|
2022-06-12 15:39:15 +00:00
|
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
|
|
nativeBuildInputs = with pkgs; [
|
2024-03-19 09:07:25 +00:00
|
|
|
age
|
2022-06-12 15:39:15 +00:00
|
|
|
sops
|
|
|
|
ssh-to-age
|
|
|
|
nix-prefetch
|
|
|
|
nix-prefetch-git
|
|
|
|
jq
|
|
|
|
bundix
|
|
|
|
python3
|
|
|
|
python3Packages.yapf
|
|
|
|
github-cli
|
2022-06-12 15:42:42 +00:00
|
|
|
statix
|
2023-12-09 09:27:20 +00:00
|
|
|
alejandra
|
2022-06-12 15:39:15 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
|
2024-04-26 09:26:26 +00:00
|
|
|
packages.x86_64-linux = mkPackages "x86_64-linux";
|
|
|
|
packages.aarch64-linux = mkPackages "aarch64-linux";
|
2022-06-12 15:39:15 +00:00
|
|
|
hydraJobs =
|
|
|
|
(builtins.listToAttrs (map
|
|
|
|
({
|
|
|
|
name,
|
|
|
|
system,
|
2022-12-18 13:54:23 +00:00
|
|
|
...
|
2022-06-12 15:39:15 +00:00
|
|
|
}: {
|
2022-02-26 08:13:08 +00:00
|
|
|
inherit name;
|
|
|
|
value = {
|
2022-02-26 08:55:00 +00:00
|
|
|
${system} = nixosConfigurations.${name}.config.system.build.toplevel;
|
2022-02-26 08:13:08 +00:00
|
|
|
};
|
2022-01-14 09:19:01 +00:00
|
|
|
})
|
2022-06-12 15:39:15 +00:00
|
|
|
systems))
|
|
|
|
// {
|
2022-06-12 15:42:42 +00:00
|
|
|
inherit devShell;
|
2024-01-22 10:58:14 +00:00
|
|
|
inherit packages;
|
2022-04-16 15:59:04 +00:00
|
|
|
# Uncomment the line to build an installer image
|
|
|
|
# This is EXTREMELY LARGE and will make builds take forever
|
|
|
|
# installer.x86_64-linux = nixosConfigurations.installer.config.system.build.isoImage;
|
2024-04-13 13:05:50 +00:00
|
|
|
tests = let
|
|
|
|
pkgs = import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
overlays = [
|
|
|
|
self.overlays.x86_64-linux
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
postgresql = pkgs.callPackage ./new-infra/containers/postgresql/test.nix {};
|
2024-04-15 13:19:35 +00:00
|
|
|
keycloak = pkgs.callPackage ./new-infra/containers/keycloak/test.nix {};
|
2024-04-13 13:05:50 +00:00
|
|
|
};
|
2022-04-16 11:02:32 +00:00
|
|
|
};
|
2022-06-12 15:39:15 +00:00
|
|
|
};
|
2022-01-14 09:19:01 +00:00
|
|
|
}
|