97 lines
3.3 KiB
Nix
97 lines
3.3 KiB
Nix
rec {
|
|
description = "Lotte's NixOS installation";
|
|
|
|
# Use NixOS unstable
|
|
inputs = {
|
|
nixpkgs.url = github:NixOS/nixpkgs;
|
|
flake-utils.url = github:numtide/flake-utils;
|
|
rust-overlay.url = github:oxalica/rust-overlay;
|
|
cargo2nix.url = "github:cargo2nix/cargo2nix/be-friendly-to-users"; # dummy
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
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";
|
|
nix-gaming.url = github:fufexan/nix-gaming;
|
|
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";
|
|
hydra.url = github:thufschmitt/hydra/nix-ca;
|
|
nixpkgs-hydra.url = "github:NixOS/nixpkgs/nixos-21.05-small";
|
|
hydra.inputs.nixpkgs.follows = "nixpkgs-hydra";
|
|
hosts-list.url = github:StevenBlack/hosts;
|
|
hosts-list.flake = false;
|
|
nixos-hardware.url = github:NixOS/nixos-hardware;
|
|
miifox-net.url = "git+https://git.chir.rs/CarolineHusky/MiiFox.net";
|
|
miifox-net.flake = false;
|
|
};
|
|
|
|
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";
|
|
}
|
|
/*{
|
|
name = "installer"; # The Installer DVD
|
|
system = "x86_64-linux";
|
|
}*/
|
|
#{
|
|
# name = "rpi2"; # Raspberry Pi 2
|
|
# system = "armv7l-linux";
|
|
#}
|
|
];
|
|
in
|
|
rec {
|
|
nixosConfigurations =
|
|
builtins.listToAttrs (map
|
|
({ name, system }: {
|
|
inherit name;
|
|
value = nixpkgs.lib.nixosSystem
|
|
{
|
|
inherit system;
|
|
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};
|
|
rust-binaries = args.rust-binaries.packages.${system};
|
|
})
|
|
nur.overlay
|
|
polymc.overlay
|
|
];
|
|
})
|
|
];
|
|
};
|
|
})
|
|
systems);
|
|
hydraJobs = (builtins.listToAttrs (map
|
|
({ name, system }: {
|
|
inherit name;
|
|
value = {
|
|
${system} = nixosConfigurations.${name}.config.system.build.toplevel;
|
|
};
|
|
})
|
|
systems))/* // {
|
|
installer.x86_64-linux = nixosConfigurations.installer.config.system.build.isoImage;
|
|
}*/;
|
|
};
|
|
}
|