nix: init disko

This commit is contained in:
Nico 2025-05-03 16:16:01 +10:00
parent bca296334f
commit 48798433f9
4 changed files with 88 additions and 18 deletions

View file

@ -8,9 +8,11 @@
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
disko.url = "github:nix-community/disko/latest";
disko.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, lanzaboote, nix-darwin, ... }@inputs: {
outputs = { self, nixpkgs, lanzaboote, nix-darwin, disko, ... }@inputs: {
nixosConfigurations.pluto = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
@ -31,6 +33,8 @@
./modules/linux/secureboot.nix
lanzaboote.nixosModules.lanzaboote
./hosts/disko-desktop.nix
disko.nixosModules.disko
./hosts/pluto/conf.nix
./hosts/pluto/hardware-configuration.nix
];