nixos-config/flake.nix

68 lines
2.5 KiB
Nix
Raw Normal View History

2022-01-14 10:19:01 +01:00
rec {
description = "Lotte's NixOS installation";
# Use NixOS unstable
2022-02-18 14:17:35 +01:00
inputs.nixpkgs.url = github:NixOS/nixpkgs;
inputs.nixpkgs-soundtouch.url = "github:darkkirb/nixpkgs?ref=soundtouch-2.3.1";
inputs.nixpkgs-tdesktop.url = "github:yshym/nixpkgs?ref=tdesktop-3.5.1";
2022-02-10 17:01:58 +01:00
inputs.cargo2nix.url = "github:cargo2nix/cargo2nix/master"; # dummy
2022-01-14 10:19:01 +01: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";
inputs.chir-rs.url = "git+https://git.chir.rs/darkkirb/chir.rs.git?ref=main";
#inputs.chir-rs.inputs.nixpkgs.follows = "nixpkgs"; # nixpkgs regression?
2022-01-19 14:47:14 +01:00
inputs.nur.url = "github:nix-community/NUR";
2022-02-18 14:17:35 +01:00
inputs.nix-gaming.url = "github:darkkirb/nix-gaming?ref=fix-wine-deriv-path";
2022-02-18 20:32:29 +01:00
#inputs.nix-gaming.inputs.nixpkgs.follows = "nixpkgs"; # rebuilds wine-tkg literally every goddamn time
2022-01-22 21:06:20 +01:00
inputs.polymc.url = "github:PolyMC/PolyMC";
inputs.polymc.inputs.nixpkgs.follows = "nixpkgs";
2022-02-09 08:19:39 +01:00
inputs.dns.url = "github:DarkKirb/dns.nix?ref=master";
2022-01-23 19:22:44 +01:00
inputs.dns.inputs.nixpkgs.follows = "nixpkgs";
2022-01-14 10:19:01 +01:00
2022-02-18 16:09:32 +01:00
outputs = { self, nixpkgs, sops-nix, home-manager, chir-rs, nur, nix-gaming, polymc, ... } @ args: rec {
2022-01-14 10:19:01 +01:00
nixosConfigurations =
let
systems = [
"nixos-8gb-fsn1-1" # Hetzner Server
2022-01-18 11:23:54 +01:00
"nutty-noon" # PC
2022-01-29 15:50:06 +01:00
"thinkrac" # Thinkpad T470
2022-01-14 10:19:01 +01:00
];
in
builtins.listToAttrs (map
(name: {
name = name;
value = nixpkgs.lib.nixosSystem
2022-02-08 22:01:33 +01:00
rec {
2022-01-14 10:19:01 +01:00
system = "x86_64-linux";
2022-02-08 22:01:33 +01:00
specialArgs = args // {
inherit system;
};
2022-01-14 10:19:01 +01:00
modules = [
(./config + "/${name}.nix")
./config/default.nix
2022-01-14 15:13:55 +01:00
sops-nix.nixosModules.sops
2022-01-15 16:09:02 +01:00
home-manager.nixosModules.home-manager
2022-01-17 20:53:47 +01:00
({ pkgs, ... }: {
nixpkgs.overlays = [
(self: super: {
chir-rs = chir-rs.outputs.defaultPackage.x86_64-linux;
2022-01-22 20:31:38 +01:00
nix-gaming = nix-gaming.outputs.packages.x86_64-linux;
2022-01-17 20:53:47 +01:00
})
2022-01-18 16:02:12 +00:00
nur.overlay
2022-01-22 21:06:20 +01:00
polymc.overlay
2022-01-17 20:53:47 +01:00
];
})
2022-01-14 10:19:01 +01:00
];
};
})
systems);
2022-02-18 16:09:32 +01:00
hydraJobs = builtins.mapAttrs
(name: value: {
x86_64-linux = value.config.system.build.toplevel;
})
nixosConfigurations;
2022-01-14 10:19:01 +01:00
};
}