hurricane: 27 current 2025-06-19 12:39:37 25.05.20250615.6c64dab 6.15.2 *

add nix unstable, add unstable code-cursor
This commit is contained in:
2025-06-19 12:39:39 +02:00
parent 5c84ecc6e2
commit c606de5327
3 changed files with 40 additions and 5 deletions

View File

@ -3,18 +3,31 @@
outputs = inputs @ {
nixpkgs,
nixpkgs-unstable,
home-manager,
...
}: {
nixosConfigurations = {
wildfire = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = {
inherit inputs;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
modules = [
./hosts/wildfire/configuration.nix
];
};
hurricane = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = {
inherit inputs;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
modules = [
./hosts/hurricane/configuration.nix
];
@ -25,6 +38,7 @@
inputs = {
# NixOS
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
# Home Manager
home-manager = {