feat: add unstable nixpkgs overlay
This commit is contained in:
parent
fcf66bf672
commit
c4be4abdeb
4 changed files with 39 additions and 3 deletions
11
flake.nix
11
flake.nix
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
# Secrets management
|
||||
sops-nix = {
|
||||
|
|
@ -27,7 +28,13 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... }@inputs: {
|
||||
outputs = { self, nixpkgs, ... }@inputs: let
|
||||
inherit (self) outputs;
|
||||
in {
|
||||
|
||||
# Custom packages and modifications, exported as overlays
|
||||
overlays = import ./overlays {inherit inputs;};
|
||||
|
||||
nixosConfigurations = {
|
||||
sesame = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
|
|
@ -37,7 +44,7 @@
|
|||
];
|
||||
};
|
||||
gwiad = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./hosts/gwiad/configuration.nix
|
||||
# inputs.home-manager.nixosModules.default
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue