nix-config/flake.nix

150 lines
3.5 KiB
Nix
Raw Normal View History

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-05-17 05:07:14 +02:00
home-manager = {
url = "github:donovanglover/home-manager";
2023-05-17 05:07:14 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
2023-05-17 05:07:14 +02:00
stylix = {
url = "github:donovanglover/stylix";
2023-05-17 05:35:52 +02:00
inputs = {
nixpkgs.follows = "nixpkgs";
home-manager.follows = "home-manager";
};
2023-05-17 05:07:14 +02:00
};
sakaya = {
url = "github:donovanglover/sakaya";
inputs.nixpkgs.follows = "nixpkgs";
};
mobile-nixos = {
url = "github:donovanglover/mobile-nixos";
flake = false;
};
2023-06-21 08:41:38 +02:00
};
outputs =
{
self,
nixpkgs,
mobile-nixos,
...
}@attrs:
let
inherit (nixpkgs.lib) nixosSystem;
inherit (nixpkgs.lib.filesystem) packagesFromDirectoryRecursive listFilesRecursive;
inherit (nixpkgs.legacyPackages) x86_64-linux aarch64-linux;
inherit (builtins) listToAttrs map replaceStrings;
nameOf = path: replaceStrings [ ".nix" ] [ "" ] (baseNameOf (toString path));
2024-10-10 01:51:53 +02:00
forAllSystems =
function:
nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-linux"
] (system: function nixpkgs.legacyPackages.${system});
in
{
2024-10-10 01:51:53 +02:00
packages = forAllSystems (
pkgs:
packagesFromDirectoryRecursive {
callPackage = pkgs.callPackage;
directory = ./packages;
}
);
nixosModules = listToAttrs (
map (file: {
name = nameOf file;
value = import file;
}) (listFilesRecursive ./modules)
);
homeModules = listToAttrs (
map (file: {
name = nameOf file;
value = import file;
}) (listFilesRecursive ./home)
);
overlays = listToAttrs (
map (file: {
name = nameOf file;
value = import file;
}) (listFilesRecursive ./overlays)
);
2024-10-10 01:51:53 +02:00
checks.x86_64-linux = listToAttrs (
map (file: {
name = nameOf file;
2024-10-10 01:51:53 +02:00
value = import file {
inherit self;
pkgs = x86_64-linux;
};
}) (listFilesRecursive ./tests)
);
nixosConfigurations =
let
phoneModules = [
./hosts/phone/configuration.nix
./hosts/phone/hardware-configuration.nix
];
in
{
nixos = nixosSystem {
system = "x86_64-linux";
specialArgs = attrs // {
nix-config = self;
};
modules = [
./hosts/laptop/configuration.nix
./hosts/laptop/hardware-configuration.nix
];
};
mobile-nixos = nixosSystem {
system = "aarch64-linux";
specialArgs = attrs // {
nix-config = self;
};
modules = phoneModules ++ [
(import "${mobile-nixos}/lib/configuration.nix" {
device = "pine64-pinephone";
})
{
mobile.beautification = {
silentBoot = true;
splash = true;
};
}
];
};
mobile-nixos-vm = nixosSystem {
system = "x86_64-linux";
specialArgs = attrs // {
nix-config = self;
};
modules = phoneModules;
};
};
formatter = {
x86_64-linux = x86_64-linux.nixfmt-rfc-style;
aarch64-linux = aarch64-linux.nixfmt-rfc-style;
};
};
}