97 lines
3.2 KiB
Nix
97 lines
3.2 KiB
Nix
{
|
|
description = "Laureηt's infrastructure";
|
|
|
|
# TODO: setup flake-parts à la place de flake-utils
|
|
# TODO: setup le formatter comme sioodmy
|
|
# 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
|
|
|
|
inputs = {
|
|
nixpkgs = {
|
|
url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
# url = "git+file:///home/laurent/Documents/nixpkgs?shallow=1";
|
|
};
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
agenix = {
|
|
url = "github:yaxitech/ragenix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
inputs.flake-utils.follows = "flake-utils";
|
|
};
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
lanzaboote.url = "github:nix-community/lanzaboote";
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
|
disko.url = "github:nix-community/disko";
|
|
nixos-anywhere.url = "github:nix-community/nixos-anywhere";
|
|
|
|
resume.url = "git+https://git.fainsin.bzh/Laurent/resume";
|
|
projet-intelligence-artificielle-multimedia.url =
|
|
"git+https://git.fainsin.bzh/ENSEEIHT/projet-intelligence-artificielle-multimedia";
|
|
};
|
|
|
|
nixConfig = {
|
|
extra-substituters =
|
|
[ "https://nix-community.cachix.org" "https://hyprland.cachix.org" ];
|
|
extra-trusted-public-keys = [
|
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
|
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
|
];
|
|
};
|
|
|
|
outputs = { nixpkgs, flake-utils, lanzaboote, agenix, home-manager
|
|
, nixos-hardware, disko, ... }@inputs:
|
|
|
|
(flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
devShells.default = pkgs.mkShell {
|
|
packages = [
|
|
pkgs.nixfmt # formatting
|
|
pkgs.git # version control
|
|
pkgs.update-nix-fetchgit # auto update fetchs
|
|
agenix.packages.${system}.ragenix # secrets
|
|
pkgs.sbctl # secure boot
|
|
];
|
|
};
|
|
})) // {
|
|
|
|
# neodymium laptop
|
|
nixosConfigurations.neodymium = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = inputs;
|
|
modules = [
|
|
./hosts/neodymium
|
|
home-manager.nixosModules.home-manager
|
|
agenix.nixosModules.default
|
|
lanzaboote.nixosModules.lanzaboote
|
|
nixos-hardware.nixosModules.common-cpu-amd
|
|
nixos-hardware.nixosModules.common-gpu-nvidia-disable
|
|
nixos-hardware.nixosModules.common-pc-laptop
|
|
nixos-hardware.nixosModules.common-pc-laptop-ssd
|
|
];
|
|
};
|
|
|
|
# hydrogen vps
|
|
nixosConfigurations.hydrogen = nixpkgs.lib.nixosSystem rec {
|
|
system = "x86_64-linux";
|
|
specialArgs = {
|
|
inherit inputs;
|
|
inherit system;
|
|
};
|
|
modules = [
|
|
./hosts/hydrogen
|
|
home-manager.nixosModules.home-manager
|
|
disko.nixosModules.default
|
|
agenix.nixosModules.default
|
|
lanzaboote.nixosModules.lanzaboote
|
|
];
|
|
};
|
|
};
|
|
}
|