mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
1e16aaa3ae
Fixes an issue where the build would previously show a warning about `qt.platformTheme` being renamed to `qt.platformTheme.name`.
87 lines
2.9 KiB
Nix
87 lines
2.9 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/release-24.05";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
stylix = {
|
|
url = "github:bluskript/stylix/6bc871ab352c9f18d1179daab9e392a4d46393af";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
home-manager.follows = "home-manager";
|
|
};
|
|
};
|
|
|
|
sakaya = {
|
|
url = "github:donovanglover/sakaya";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... } @ attrs:
|
|
let
|
|
inherit (nixpkgs.lib) nixosSystem;
|
|
inherit (nixpkgs.legacyPackages.x86_64-linux) nixpkgs-fmt callPackage;
|
|
inherit (builtins) attrNames listToAttrs map replaceStrings readDir;
|
|
|
|
flakeOutputs = [ "overlays" "nixosModules" "nixosConfigurations" "homeManagerModules" "packages" "checks" ];
|
|
flakeDirectories = [ "overlays" "modules" "hardware" "home" "packages" "tests" ];
|
|
in
|
|
{
|
|
formatter.x86_64-linux = nixpkgs-fmt;
|
|
} //
|
|
(listToAttrs
|
|
(map
|
|
(attributeName: {
|
|
name = attributeName;
|
|
value =
|
|
let
|
|
directory = replaceStrings flakeOutputs flakeDirectories attributeName;
|
|
|
|
attributeValue = (listToAttrs
|
|
(map
|
|
(file: {
|
|
name =
|
|
if file == "laptop.nix"
|
|
then "nixos"
|
|
else replaceStrings [ ".nix" ] [ "" ] file;
|
|
value =
|
|
if directory == "packages"
|
|
then callPackage ./${directory}/${file} { }
|
|
else
|
|
if directory == "tests"
|
|
then
|
|
import ./${directory}/${file}
|
|
{
|
|
inherit self;
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
}
|
|
else
|
|
if directory == "hardware"
|
|
then
|
|
nixosSystem
|
|
{
|
|
system = "x86_64-linux";
|
|
specialArgs = attrs // { nix-config = self; };
|
|
modules = [
|
|
./.
|
|
./${directory}/${file}
|
|
];
|
|
}
|
|
else import ./${directory}/${file};
|
|
})
|
|
(attrNames (readDir ./${directory}))));
|
|
|
|
attributeSet =
|
|
if directory == "packages" || directory == "tests"
|
|
then { x86_64-linux = attributeValue; }
|
|
else attributeValue;
|
|
in
|
|
(attributeSet);
|
|
})
|
|
(flakeOutputs)));
|
|
}
|