yt-dlp set to unstable + godot disabled

This commit is contained in:
2024-06-16 14:03:37 -06:00
parent 82d6367859
commit 8096a7cd4c
7 changed files with 85 additions and 33 deletions

View File

@@ -4,13 +4,18 @@
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-24.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-master.url = "github:nixos/nixpkgs?ref=master";
home-manager.url = "github:nix-community/home-manager/release-24.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-gaming.url = "github:fufexan/nix-gaming";
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nixpkgs-unstable, nixpkgs-master, home-manager, ...
}@inputs:
outputs = { self, nixpkgs, unstable, master, home-manager, ... }@inputs:
let
inherit (self) outputs;
lib = nixpkgs.lib // home-manager.lib;
@@ -21,14 +26,15 @@
config.allowUnfree = true;
};
pkgs = makePkgs nixpkgs;
pkgsU = makePkgs nixpkgs-unstable;
pkgsM = makePkgs nixpkgs-master;
pkgsU = makePkgs unstable;
pkgsM = makePkgs master;
in {
inherit lib pkgs;
formatter = pkgs.alejandra;
nixosConfigurations = {
workstation = lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs outputs; };
modules = [
./hosts/workstation/configuration.nix
({ pkgs, ... }: {
@@ -36,10 +42,10 @@
[ (import ./overlay.nix { inherit pkgs pkgsU pkgsM; }) ];
})
];
specialArgs = { inherit inputs outputs; };
};
miniserver = lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs outputs; };
modules = [
./hosts/miniserver/configuration.nix
({ pkgs, ... }: {
@@ -47,10 +53,10 @@
[ (import ./overlay.nix { inherit pkgs pkgsU pkgsM; }) ];
})
];
specialArgs = { inherit inputs outputs; };
};
server = lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs outputs; };
modules = [
./hosts/server/configuration.nix
({ pkgs, ... }: {
@@ -58,7 +64,6 @@
[ (import ./overlay.nix { inherit pkgs pkgsU pkgsM; }) ];
})
];
specialArgs = { inherit inputs outputs; };
};
};
};