diff options
author | Preston Pan <ret2pop@gmail.com> | 2024-12-24 23:02:49 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2024-12-24 23:02:49 -0800 |
commit | 3310c90259c488c01551c7cb439bf1d61fc75585 (patch) | |
tree | fa1e3242db9a16b39bf6ca579f9d434d06bfb450 /flake.nix | |
parent | 92851fff0176c15624f51acb61449635b22ef27b (diff) |
first diverging branch
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -15,13 +15,17 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + lanzaboote = { + url = "github:nix-community/lanzaboote/v0.4.1"; + inputs.nixpkgs.follows = "nixpkgs"; + }; nur.url = "github:nix-community/NUR"; sops-nix.url = "github:Mic92/sops-nix"; scripts.url = "github:ret2pop/scripts"; wallpapers.url = "github:ret2pop/wallpapers"; }; - outputs = { nixpkgs, home-manager, nur, disko, ... }@attrs: { + outputs = { nixpkgs, home-manager, nur, disko, lanzaboote, ... }@attrs: { nixosConfigurations = { live = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; @@ -35,9 +39,9 @@ nurpkgs = import nixpkgs { system = "x86_64-linux"; }; }; in - { - imports = [ ]; - }) + { + imports = [ ]; + }) (nixpkgs + "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix") ./configuration.nix disko.nixosModules.disko @@ -53,7 +57,7 @@ ]; }; - continuity = nixpkgs.lib.nixosSystem { + continuity-dell = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = attrs; modules = [ @@ -65,9 +69,10 @@ nurpkgs = import nixpkgs { system = "x86_64-linux"; }; }; in - { - imports = [ ]; - }) + { + imports = [ ]; + }) + lanzaboote.nixosModules.lanzaboote ./configuration.nix disko.nixosModules.disko home-manager.nixosModules.home-manager |