272 current 1970-01-01 01:00:00 23.11.20240405.72da83d 6.1.84 *
This commit is contained in:
16
flake.nix
16
flake.nix
@ -25,16 +25,22 @@
|
||||
...
|
||||
} @ inputs: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
overlays = {
|
||||
pkg-sets = final: prev: {
|
||||
unstable = import inputs.unstable {system = final.system;};
|
||||
unstable = final: prev: {
|
||||
unstable = import inputs.unstable {
|
||||
system = final.system;
|
||||
config = final.config;
|
||||
};
|
||||
};
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
overlays = [unstable];
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in {
|
||||
nixosConfigurations."MaxNixosLaptop" = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit pkgs;
|
||||
};
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
|
Reference in New Issue
Block a user