mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
84 lines
2.3 KiB
Nix
84 lines
2.3 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
stylix = {
|
|
url = "github:danth/stylix";
|
|
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;
|
|
|
|
checkArgs = {
|
|
inherit self;
|
|
|
|
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
|
};
|
|
|
|
flakeOutputs = [ "overlays" "nixosModules" "homeManagerModules" "packages" ];
|
|
flakeDirectories = [ "overlays" "modules" "home" "packages" ];
|
|
packageDirectory = "packages";
|
|
in
|
|
{
|
|
formatter.x86_64-linux = nixpkgs-fmt;
|
|
|
|
nixosConfigurations = {
|
|
nixos = nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = attrs // { nix-config = self; };
|
|
modules = [ ./. ];
|
|
};
|
|
};
|
|
|
|
checks.x86_64-linux = {
|
|
hyprland = import ./tests/hyprland.nix checkArgs;
|
|
neovim = import ./tests/neovim.nix checkArgs;
|
|
};
|
|
} //
|
|
(listToAttrs
|
|
(map
|
|
(attributeName: {
|
|
name = attributeName;
|
|
value =
|
|
let
|
|
directory = replaceStrings flakeOutputs flakeDirectories attributeName;
|
|
|
|
attributeValue = (listToAttrs
|
|
(map
|
|
(file: {
|
|
name = replaceStrings [ ".nix" ] [ "" ] file;
|
|
value =
|
|
if directory == packageDirectory
|
|
then callPackage ./${directory}/${file} { }
|
|
else import ./${directory}/${file};
|
|
})
|
|
(attrNames (readDir ./${directory}))));
|
|
|
|
attributeSet =
|
|
if directory == packageDirectory
|
|
then { x86_64-linux = attributeValue; }
|
|
else attributeValue;
|
|
in
|
|
(attributeSet);
|
|
})
|
|
(flakeOutputs)));
|
|
}
|