253 lines
7.2 KiB
Nix
253 lines
7.2 KiB
Nix
rec {
|
|
description = "Lotte's NixOS installation";
|
|
|
|
# Use NixOS unstable
|
|
inputs = {
|
|
# Sorted by name
|
|
attic = {
|
|
url = "github:DarkKirb/attic";
|
|
inputs.crane.follows = "crane";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
inputs.nixpkgs.follows = "nixpkgs-for-crane";
|
|
inputs.nixpkgs-stable.follows = "nixpkgs-for-crane";
|
|
};
|
|
cargo2nix = {
|
|
url = "github:DarkKirb/cargo2nix/release-0.11.0";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.rust-overlay.follows = "rust-overlay";
|
|
};
|
|
chir-rs = {
|
|
url = "github:DarkKirb/chir.rs";
|
|
#inputs.cargo2nix.follows = "cargo2nix";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
#inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
crane = {
|
|
url = "github:DarkKirb/crane";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
inputs.nixpkgs.follows = "nixpkgs-for-crane";
|
|
inputs.rust-overlay.follows = "rust-overlay";
|
|
};
|
|
dns = {
|
|
url = "github:DarkKirb/dns.nix";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
emanote = {
|
|
url = "github:EmaApps/emanote";
|
|
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";
|
|
};
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
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-neovim = {
|
|
url = "github:syberant/nix-neovim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nix-packages = {
|
|
url = "git+https://git.chir.rs/darkkirb/nix-packages.git?ref=main";
|
|
inputs.attic.follows = "attic";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixos-config-for-netboot.url = "github:DarkKirb/nixos-config/c9c3d16b23042a25f504a6d71e7075318f1137f8";
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware";
|
|
nixpkgs.url = "github:NixOS/nixpkgs";
|
|
nixpkgs-for-crane.url = "github:NixOS/nixpkgs/3ae365afb80773c3bb67e52294a82e329a9e5be0";
|
|
nixpkgs-noto-variable.url = "github:NixOS/nixpkgs/1988f9a17fc1c2ab11f5817adf34a4eb8d06454d";
|
|
nur.url = "github:nix-community/NUR";
|
|
prismmc = {
|
|
url = "github:PrismLauncher/PrismLauncher";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
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;
|
|
};
|
|
};
|
|
|
|
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 = "installer"; # Installer iso
|
|
system = "x86_64-linux";
|
|
}
|
|
{
|
|
name = "netboot"; # Installer netboot
|
|
system = "x86_64-linux";
|
|
}
|
|
{
|
|
name = "instance-20221213-1915"; # Oracle server
|
|
system = "aarch64-linux";
|
|
}
|
|
{
|
|
name = "devterm"; # devterm
|
|
system = "aarch64-linux";
|
|
}
|
|
];
|
|
in rec {
|
|
nixosConfigurations = builtins.listToAttrs (map
|
|
({
|
|
name,
|
|
system,
|
|
configName ? name,
|
|
}: {
|
|
inherit name;
|
|
value =
|
|
nixpkgs.lib.nixosSystem
|
|
{
|
|
inherit system;
|
|
specialArgs =
|
|
args
|
|
// {
|
|
inherit system;
|
|
};
|
|
modules = [
|
|
(./config + "/${configName}.nix")
|
|
./config/default.nix
|
|
sops-nix.nixosModules.sops
|
|
home-manager.nixosModules.home-manager
|
|
({pkgs, ...}: {
|
|
nixpkgs.overlays = [
|
|
nur.overlay
|
|
args.prismmc.overlays.default
|
|
];
|
|
home-manager.extraSpecialArgs = args // {inherit system;};
|
|
})
|
|
(import utils/link-input.nix args)
|
|
];
|
|
};
|
|
})
|
|
systems);
|
|
overlays = {
|
|
x86_64-linux = import ./overlays args "x86_64-linux";
|
|
aarch64-linux = import ./overlays args "aarch64-linux";
|
|
};
|
|
devShell.x86_64-linux = let
|
|
pkgs = import nixpkgs {
|
|
system = "x86_64-linux";
|
|
overlays = [self.overlays.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
|
|
statix
|
|
backblaze-b2
|
|
];
|
|
};
|
|
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
|
|
packages.x86_64-linux = let
|
|
pkgs = import nixpkgs {
|
|
system = "x86_64-linux";
|
|
overlays = [self.overlays.x86_64-linux];
|
|
config.allowUnfree = true;
|
|
};
|
|
in {
|
|
neovim-base = args.nix-neovim.buildNeovim {
|
|
inherit pkgs;
|
|
configuration = import ./config/programs/vim/configuration.nix false;
|
|
};
|
|
neovim = args.nix-neovim.buildNeovim {
|
|
inherit pkgs;
|
|
configuration = import ./config/programs/vim/configuration.nix true;
|
|
};
|
|
};
|
|
packages.aarch64-linux = let
|
|
pkgs = import nixpkgs {
|
|
system = "aarch64-linux";
|
|
overlays = [self.overlays.aarch64-linux];
|
|
config.allowUnfree = true;
|
|
};
|
|
in {
|
|
neovim-base = args.nix-neovim.buildNeovim {
|
|
inherit pkgs;
|
|
configuration = import ./config/programs/vim/configuration.nix false;
|
|
};
|
|
neovim = args.nix-neovim.buildNeovim {
|
|
inherit pkgs;
|
|
configuration = import ./config/programs/vim/configuration.nix true;
|
|
};
|
|
};
|
|
hydraJobs =
|
|
(builtins.listToAttrs (map
|
|
({
|
|
name,
|
|
system,
|
|
...
|
|
}: {
|
|
inherit name;
|
|
value = {
|
|
${system} = nixosConfigurations.${name}.config.system.build.toplevel;
|
|
};
|
|
})
|
|
systems))
|
|
// {
|
|
inherit devShell;
|
|
inherit packages;
|
|
# 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;
|
|
};
|
|
};
|
|
}
|