flake/flake.nix

160 lines
4.4 KiB
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{
2023-11-03 15:16:07 +00:00
description = "Guanran928's Flake";
2023-09-19 00:17:43 +00:00
inputs = {
# INFO: `nixos-unstable` and `nixpkgs-unstable` contains the same set of packages,
# the difference between those channels is their jobsets,
# `nixpkgs-unstable` contains less(?) jobs, and usually updates faster.
#
# REFERENCE: https://discourse.nixos.org/t/differences-between-nix-channels/13998/5
2024-08-14 09:06:01 +00:00
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
2023-10-14 07:53:25 +00:00
2023-10-15 00:51:56 +00:00
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-12-17 12:06:05 +00:00
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
2023-09-19 00:17:43 +00:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-12-16 08:32:13 +00:00
impermanence = {
url = "github:nix-community/impermanence";
};
2023-09-19 00:17:43 +00:00
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
2023-11-03 15:18:31 +00:00
inputs.crane.follows = "crane";
inputs.flake-compat.follows = "flake-compat";
inputs.flake-parts.follows = "flake-parts";
inputs.pre-commit-hooks-nix.follows = "pre-commit-hooks-nix";
inputs.rust-overlay.follows = "rust-overlay";
2023-09-19 00:17:43 +00:00
};
2024-02-26 18:03:00 +00:00
neovim = {
2024-07-04 05:29:18 +00:00
url = "git+https://git.ny4.dev/nyancat/nvim";
2024-02-26 18:03:00 +00:00
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
2024-03-23 06:17:09 +00:00
inputs.treefmt-nix.follows = "treefmt-nix";
inputs.systems.follows = "systems";
2024-02-26 18:03:00 +00:00
};
2023-12-16 08:32:13 +00:00
nixos-hardware = {
2024-07-25 16:44:41 +00:00
url = "github:NixOS/nixos-hardware";
2023-12-16 08:32:13 +00:00
};
2023-10-15 00:51:56 +00:00
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
2024-07-31 07:00:48 +00:00
inputs.nixpkgs-stable.follows = "nixpkgs";
2023-11-03 15:18:31 +00:00
};
2023-12-03 08:41:22 +00:00
systems.url = "github:nix-systems/default";
2024-03-09 01:44:41 +00:00
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-03 15:18:31 +00:00
### De-dupe flake dependencies
2023-11-03 15:18:31 +00:00
crane = {
url = "github:ipetkov/crane";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-compat = {
url = "github:edolstra/flake-compat";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
gitignore = {
url = "github:hercules-ci/gitignore.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks-nix = {
url = "github:cachix/pre-commit-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
2024-07-31 07:00:48 +00:00
inputs.nixpkgs-stable.follows = "nixpkgs";
2023-11-03 15:18:31 +00:00
inputs.flake-compat.follows = "flake-compat";
inputs.gitignore.follows = "gitignore";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-09-19 00:17:43 +00:00
};
outputs =
inputs:
inputs.flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = inputs.nixpkgs.legacyPackages.${system};
treefmtEval = inputs.treefmt-nix.lib.evalModule pkgs ./treefmt.nix;
in
{
### nix fmt
formatter = treefmtEval.config.build.wrapper;
2024-03-09 04:25:06 +00:00
### nix flake check
checks.formatting = treefmtEval.config.build.check inputs.self;
2023-12-17 14:00:56 +00:00
### nix {run,shell,build}
legacyPackages = import ./pkgs pkgs;
2024-06-20 14:04:34 +00:00
### nix develop
devShells.default = pkgs.mkShell {
packages = with pkgs; [
colmena
sops
];
};
}
)
2024-08-24 09:12:08 +00:00
// {
2024-03-09 04:06:08 +00:00
### imports = [];
nixosModules.default = ./nixos/modules;
homeManagerModules.default = ./home/modules;
2024-03-09 04:25:06 +00:00
### nixpkgs.overlays = [];
overlays = import ./overlays;
2024-03-09 04:06:08 +00:00
### NixOS
2024-08-24 09:12:08 +00:00
nixosConfigurations."dust" = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./nixos/profiles/core
./hosts/dust
];
specialArgs = {
inherit inputs;
};
2024-03-09 04:06:08 +00:00
};
2024-04-22 18:35:50 +00:00
colmena = {
meta = {
specialArgs = {
inherit inputs;
};
2024-04-22 18:35:50 +00:00
nixpkgs = import inputs.nixpkgs {
system = "x86_64-linux"; # How does this work?
};
};
2024-07-10 09:57:01 +00:00
defaults.imports = [
./nixos/profiles/core
2024-08-23 08:10:31 +00:00
./nixos/profiles/server
2024-07-10 09:57:01 +00:00
];
2024-08-12 06:30:33 +00:00
"tyo0" = {
imports = [ ./hosts/tyo0 ];
2024-06-05 09:50:46 +00:00
deployment.targetHost = "tyo0.ny4.dev";
};
"blacksteel" = {
imports = [ ./hosts/blacksteel ];
2024-06-05 09:50:46 +00:00
deployment.targetHost = "blacksteel"; # thru tailscale
2024-04-22 18:35:50 +00:00
};
};
2024-08-24 09:12:08 +00:00
};
2023-09-19 00:17:43 +00:00
}