2022-01-14 09:19:01 +00:00
|
|
|
rec {
|
|
|
|
description = "Lotte's NixOS installation";
|
|
|
|
|
|
|
|
# Use NixOS unstable
|
2022-02-18 13:17:35 +00:00
|
|
|
inputs.nixpkgs.url = github:NixOS/nixpkgs;
|
|
|
|
inputs.nixpkgs-soundtouch.url = "github:darkkirb/nixpkgs?ref=soundtouch-2.3.1";
|
2022-02-10 16:01:58 +00:00
|
|
|
inputs.cargo2nix.url = "github:cargo2nix/cargo2nix/master"; # dummy
|
2022-01-14 09:19:01 +00:00
|
|
|
inputs.home-manager.url = "github:nix-community/home-manager";
|
|
|
|
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.sops-nix.url = github:Mic92/sops-nix;
|
|
|
|
inputs.sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
2022-01-17 19:24:59 +00:00
|
|
|
inputs.chir-rs.url = "git+https://git.chir.rs/darkkirb/chir.rs.git?ref=main";
|
2022-01-18 07:04:27 +00:00
|
|
|
#inputs.chir-rs.inputs.nixpkgs.follows = "nixpkgs"; # nixpkgs regression?
|
2022-01-19 13:47:14 +00:00
|
|
|
inputs.nur.url = "github:nix-community/NUR";
|
2022-02-26 13:12:43 +00:00
|
|
|
inputs.nix-gaming.url = github:fufexan/nix-gaming;
|
2022-02-18 19:32:29 +00:00
|
|
|
#inputs.nix-gaming.inputs.nixpkgs.follows = "nixpkgs"; # rebuilds wine-tkg literally every goddamn time
|
2022-01-22 20:06:20 +00:00
|
|
|
inputs.polymc.url = "github:PolyMC/PolyMC";
|
|
|
|
inputs.polymc.inputs.nixpkgs.follows = "nixpkgs";
|
2022-02-09 07:19:39 +00:00
|
|
|
inputs.dns.url = "github:DarkKirb/dns.nix?ref=master";
|
2022-01-23 18:22:44 +00:00
|
|
|
inputs.dns.inputs.nixpkgs.follows = "nixpkgs";
|
2022-01-14 09:19:01 +00:00
|
|
|
|
2022-02-26 08:13:08 +00:00
|
|
|
outputs = { self, nixpkgs, sops-nix, home-manager, chir-rs, nur, nix-gaming, polymc, ... } @ args:
|
|
|
|
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-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};
|
|
|
|
nix-gaming = nix-gaming.outputs.packages.${system};
|
|
|
|
})
|
|
|
|
nur.overlay
|
|
|
|
polymc.overlay
|
|
|
|
];
|
|
|
|
})
|
|
|
|
];
|
2022-02-08 21:01:33 +00:00
|
|
|
};
|
2022-02-26 08:13:08 +00:00
|
|
|
})
|
|
|
|
systems);
|
|
|
|
hydraJobs = builtins.listToAttrs (map
|
|
|
|
({ 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
|
|
|
})
|
|
|
|
systems);
|
2022-02-26 08:13:08 +00:00
|
|
|
};
|
2022-01-14 09:19:01 +00:00
|
|
|
}
|
|
|
|
|