nixos-config/flake.nix

170 lines
4.4 KiB
Nix
Raw Normal View History

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
dns = {
url = "github:DarkKirb/dns.nix";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
ema.url = "github:EmaApps/ema";
emanote = {
url = "github:EmaApps/emanote";
inputs.ema.follows = "ema";
inputs.flake-parts.follows = "flake-parts";
inputs.haskell-flake.follows = "haskell-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
2022-06-12 15:42:42 +00:00
flake-utils.url = "github:numtide/flake-utils";
2022-12-13 09:00:47 +00:00
haskell-flake.url = "github:srid/haskell-flake";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
hosts-list = {
url = "github:StevenBlack/hosts";
flake = false;
};
hydra = {
url = "github:NixOS/hydra";
#inputs.nix.follows = "nix";
#inputs.nixpkgs.follows = "nixpkgs";
};
nix-packages = {
url = "github:DarkKirb/nix-packages";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-06-12 15:42:42 +00:00
nixos-hardware.url = "github:NixOS/nixos-hardware";
2022-12-13 09:00:47 +00:00
nixpkgs.url = "github:NixOS/nixpkgs";
nixpkgs-noto-variable.url = "github:NixOS/nixpkgs/1988f9a17fc1c2ab11f5817adf34a4eb8d06454d";
nur.url = "github:nix-community/NUR";
plasma-manager = {
url = "github:pjones/plasma-manager";
inputs.home-manager.follows = "home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
prismmc = {
url = "github:PrismLauncher/PrismLauncher";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs-stable.follows = "nixpkgs";
};
tomlplusplus = {
url = "github:marzer/tomlplusplus";
flake = false;
};
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,
nur,
...
} @ 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 = "nas"; # My nas
system = "x86_64-linux";
}
{
name = "instance-20221213-1915"; # Oracle server
system = "aarch64-linux";
}
2022-06-12 15:39:15 +00:00
];
in rec {
nixosConfigurations = builtins.listToAttrs (map
({
name,
system,
}: {
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 = [
(./config + "/${name}.nix")
./config/default.nix
sops-nix.nixosModules.sops
home-manager.nixosModules.home-manager
({pkgs, ...}: {
nixpkgs.overlays = [
nur.overlay
2022-10-18 00:33:38 +00:00
args.prismmc.overlay
];
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)
];
};
})
systems);
devShell.x86_64-linux = let
pkgs = import nixpkgs {system = "x86_64-linux";};
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
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
2022-06-23 06:35:05 +00:00
backblaze-b2
2022-06-12 15:39:15 +00:00
];
};
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
hydraJobs =
(builtins.listToAttrs (map
({
name,
system,
}: {
inherit name;
value = {
${system} = nixosConfigurations.${name}.config.system.build.toplevel;
};
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;
# 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;
2022-04-16 11:02:32 +00:00
};
2022-06-12 15:39:15 +00:00
};
2022-01-14 09:19:01 +00:00
}