framework-2024-08-30-18-30-57

This commit is contained in:
Alexander Szczepanski
2024-08-30 18:30:57 +02:00
parent 756590abc3
commit c138e90c56
9 changed files with 163 additions and 48 deletions

View File

@ -12,9 +12,22 @@
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
fw-fanctrl = {
url = "github:TamtamHero/fw-fanctrl/packaging/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, nixos-hardware, ... } @ inputs:
outputs =
{ self
, nixpkgs
, nixpkgs-unstable
, home-manager
, nixos-hardware
, fw-fanctrl
, ...
} @ inputs:
let
inherit (self) outputs;
@ -42,6 +55,16 @@
./machine/desktop.nix
];
};
framework = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs outputs; };
modules = [
fw-fanctrl.nixosModules.default
./machine/framework.nix
];
};
};
};
}