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-03-25 14:43:36 +00:00
|
|
|
nixpkgs.url = github:NixOS/nixpkgs;
|
2022-03-05 20:39:49 +00:00
|
|
|
flake-utils.url = github:numtide/flake-utils;
|
|
|
|
rust-overlay.url = github:oxalica/rust-overlay;
|
|
|
|
cargo2nix.url = "github:cargo2nix/cargo2nix/be-friendly-to-users"; # dummy
|
2022-04-06 14:00:34 +00:00
|
|
|
home-manager.url = "github:andresilva/home-manager/fix-systemd-services";
|
2022-03-05 20:39:49 +00:00
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
sops-nix.url = github:Mic92/sops-nix;
|
|
|
|
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
chir-rs.url = "git+https://git.chir.rs/darkkirb/chir.rs.git?ref=main";
|
|
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
polymc.url = "github:PolyMC/PolyMC";
|
|
|
|
dns.url = "github:DarkKirb/dns.nix?ref=master";
|
|
|
|
rust-binaries.url = "git+https://git.chir.rs/darkkirb/rust-binaries?ref=main";
|
2022-03-29 14:29:06 +00:00
|
|
|
hydra.url = github:NixOS/hydra;
|
2022-03-09 13:47:07 +00:00
|
|
|
nixpkgs-hydra.url = "github:NixOS/nixpkgs/nixos-21.05-small";
|
|
|
|
hydra.inputs.nixpkgs.follows = "nixpkgs-hydra";
|
2022-03-12 21:02:54 +00:00
|
|
|
hosts-list.url = github:StevenBlack/hosts;
|
|
|
|
hosts-list.flake = false;
|
2022-03-22 18:22:35 +00:00
|
|
|
nixos-hardware.url = github:NixOS/nixos-hardware;
|
2022-03-25 13:29:24 +00:00
|
|
|
miifox-net.url = "git+https://git.chir.rs/CarolineHusky/MiiFox.net";
|
|
|
|
miifox-net.flake = false;
|
2022-04-06 19:25:12 +00:00
|
|
|
nixpkgs-firefox.url = github:NixOS/nixpkgs/nixos-21.11-small;
|
2022-03-05 20:39:49 +00:00
|
|
|
};
|
2022-01-14 09:19:01 +00:00
|
|
|
|
2022-04-07 09:08:17 +00:00
|
|
|
outputs = { self, nixpkgs, sops-nix, home-manager, chir-rs, nur, polymc, ... } @ args:
|
2022-02-26 08:13:08 +00:00
|
|
|
let
|
|
|
|
systems = [
|
|
|
|
{
|
|
|
|
name = "nixos-8gb-fsn1-1"; # Hetzner Server
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "nutty-noon"; # PC
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "thinkrac"; # Thinkpad T470
|
|
|
|
system = "x86_64-linux";
|
|
|
|
}
|
2022-03-24 06:31:46 +00:00
|
|
|
/*{
|
2022-03-22 07:37:15 +00:00
|
|
|
name = "installer"; # The Installer DVD
|
|
|
|
system = "x86_64-linux";
|
2022-03-27 08:21:33 +00:00
|
|
|
}*/
|
2022-03-02 13:37:22 +00:00
|
|
|
#{
|
|
|
|
# name = "rpi2"; # Raspberry Pi 2
|
|
|
|
# system = "armv7l-linux";
|
|
|
|
#}
|
2022-02-26 08:13:08 +00:00
|
|
|
];
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
nixosConfigurations =
|
|
|
|
builtins.listToAttrs (map
|
|
|
|
({ name, system }: {
|
|
|
|
inherit name;
|
|
|
|
value = nixpkgs.lib.nixosSystem
|
|
|
|
{
|
2022-02-08 21:01:33 +00:00
|
|
|
inherit system;
|
2022-02-26 08:13:08 +00:00
|
|
|
specialArgs = args // {
|
|
|
|
inherit system;
|
|
|
|
};
|
|
|
|
modules = [
|
|
|
|
(./config + "/${name}.nix")
|
|
|
|
./config/default.nix
|
|
|
|
sops-nix.nixosModules.sops
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
({ pkgs, ... }: {
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
(self: super: {
|
|
|
|
chir-rs = chir-rs.outputs.defaultPackage.${system};
|
2022-03-05 20:42:53 +00:00
|
|
|
rust-binaries = args.rust-binaries.packages.${system};
|
2022-02-26 08:13:08 +00:00
|
|
|
})
|
|
|
|
nur.overlay
|
|
|
|
polymc.overlay
|
|
|
|
];
|
|
|
|
})
|
|
|
|
];
|
2022-02-08 21:01:33 +00:00
|
|
|
};
|
2022-02-26 08:13:08 +00:00
|
|
|
})
|
|
|
|
systems);
|
2022-03-22 07:37:15 +00:00
|
|
|
hydraJobs = (builtins.listToAttrs (map
|
2022-02-26 08:13:08 +00:00
|
|
|
({ name, system }: {
|
|
|
|
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-03-24 06:31:46 +00:00
|
|
|
systems))/* // {
|
2022-03-27 08:21:33 +00:00
|
|
|
installer.x86_64-linux = nixosConfigurations.installer.config.system.build.isoImage;
|
2022-03-24 06:31:46 +00:00
|
|
|
}*/;
|
2022-02-26 08:13:08 +00:00
|
|
|
};
|
2022-01-14 09:19:01 +00:00
|
|
|
}
|