infrastructure/flake.nix

96 lines
3.1 KiB
Nix
Raw Normal View History

2022-12-19 22:35:54 +00:00
{
2022-12-20 10:33:21 +00:00
description = "Laureηt's infrastructure";
2022-12-19 22:35:54 +00:00
2023-11-29 14:40:36 +00:00
# TODO: rekey les secrets + changer la key de hydrogen
# TODO: luks encrypt hydrogen (dropbear ?)
# TODO: dégager btfrs de neodymium, ext4 ftw
# TODO: setup disko sur neodymium
2022-12-19 22:35:54 +00:00
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable";
# url = "git+file:///home/laurent/Documents/nixpkgs?shallow=1";
};
2023-11-29 14:40:36 +00:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
2023-04-23 13:38:34 +00:00
};
2023-12-29 22:37:51 +00:00
systems.url = "github:nix-systems/default-linux";
2023-04-23 13:38:34 +00:00
agenix = {
url = "github:yaxitech/ragenix";
2023-08-27 13:59:18 +00:00
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts.url = "github:hercules-ci/flake-parts";
2023-11-29 14:40:36 +00:00
lanzaboote.url = "github:nix-community/lanzaboote";
hyprland.url = "github:hyprwm/Hyprland";
nixos-hardware.url = "github:nixos/nixos-hardware";
2023-11-29 14:40:36 +00:00
disko.url = "github:nix-community/disko";
nixos-anywhere.url = "github:nix-community/nixos-anywhere";
treefmt-nix.url = "github:numtide/treefmt-nix";
2023-11-26 22:10:04 +00:00
resume.url = "git+https://git.fainsin.bzh/Laurent/resume";
projet-intelligence-artificielle-multimedia.url = "git+https://git.fainsin.bzh/ENSEEIHT/projet-intelligence-artificielle-multimedia";
projet-modelisation-geometrique.url = "git+https://git.fainsin.bzh/ENSEEIHT/projet-modelisation-geometrique";
projet-systemes-algorithmes-repartis.url = "git+https://git.fainsin.bzh/ENSEEIHT/projet-systemes-algorithmes-repartis";
projet-audionumerique.url = "git+https://git.fainsin.bzh/ENSEEIHT/projet-audionumerique";
projet-oral-japonais.url = "git+https://git.fainsin.bzh/ENSEEIHT/projet-oral-japonais";
projet-oral-anglais.url = "git+https://git.fainsin.bzh/ENSEEIHT/projet-oral-anglais";
TP-calcul-parallele.url = "git+https://git.fainsin.bzh/ENSEEIHT/TP-calcul-parallele";
2022-12-19 22:35:54 +00:00
};
2022-12-21 19:29:15 +00:00
2023-08-12 18:23:45 +00:00
nixConfig = {
extra-substituters = [
"https://nix-community.cachix.org"
"https://hyprland.cachix.org"
];
2023-08-12 18:23:45 +00:00
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
};
outputs = {
agenix,
flake-parts,
treefmt-nix,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
2023-12-29 22:37:51 +00:00
systems = import inputs.systems;
imports = [
flake-parts.flakeModules.easyOverlay
treefmt-nix.flakeModule
];
perSystem = {
pkgs,
system,
...
}: rec {
formatter = pkgs.alejandra;
treefmt = {
projectRootFile = "flake.nix";
programs = {
alejandra.enable = true;
deadnix.enable = true;
};
};
2023-03-19 14:13:24 +00:00
devShells.default = pkgs.mkShell {
packages = [
formatter # defined above
pkgs.git # version control
pkgs.update-nix-fetchgit # auto update fetchs
agenix.packages.${system}.ragenix # secrets
pkgs.sbctl # secure boot
2023-03-19 14:13:24 +00:00
];
};
};
2022-12-19 22:35:54 +00:00
flake.nixosConfigurations = import ./hosts {inherit inputs;};
};
2022-12-19 22:35:54 +00:00
}