flake: add unstable

This commit is contained in:
Leonardo Eugênio 2024-09-25 22:24:46 -03:00
parent 9828e1366d
commit 2a4f056aaa
3 changed files with 27 additions and 1 deletions

View file

@ -2,6 +2,8 @@
description = "My system config";
inputs = {
nixpkgs.url = "nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager/release-24.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
@ -157,7 +159,10 @@
};
phantom = lib.nixosSystem {
inherit system specialArgs;
modules = [ ./hosts/phantom ];
modules = [
{ nixpkgs.pkgs = pkgs; }
./hosts/phantom
];
};
};