This commit is contained in:
2026-04-24 09:07:09 -05:00
parent 2afd0e1ba9
commit 5f1c29d90e
5 changed files with 22 additions and 1 deletions

View File

@@ -16,6 +16,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-hardware.url = "github:nix-community/nixos-hardware/master";
nixos-opi-zero2w.url = "github:virusdave/nixos-opi-zero2w";
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";

View File

@@ -22,6 +22,8 @@
portalPackage = inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland;
};
programs.partition-manager.enable = true;
};
};
}

View File

@@ -48,7 +48,6 @@
};
programs.partition-manager.enable = true;
services.pulseaudio.enable = false;
environment.systemPackages = with pkgs; [

View File

View File

@@ -0,0 +1,16 @@
{ self, inputs, ... }: {
flake.nixosConfigurations."blue-white" = inputs.nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
modules = inputs.nixos-opi-zero2w.lib.withOpiZero2wInstallerEssentials [
self.nixosModules.z2w
self.nixosModules.z2w-hardware
#self.diskoConfigurations.z2w
({ ... }: {
networking.hostName = "blue-white";
})
];
};
}