This commit is contained in:
Tao Tien 2023-09-28 23:33:56 -07:00
parent 24aa0a58e4
commit 76c91fc817
9 changed files with 232 additions and 64 deletions

View file

@ -11,7 +11,6 @@
let
system = "x86_64-linux";
overlay-unstable = final: prev: {
# unstable = nixpkgs-unstable.legacyPackages.x86_64-linux;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
@ -44,6 +43,12 @@
./extras/dev.nix
./extras/gaming.nix
];
NObangers = nixosSystem [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./systems/BASED.nix
./systems/NObangers.nix
./extras/uwuraid.nix
];
};