clan-core/flake.nix

45 lines
1.4 KiB
Nix
Raw Normal View History

{
description = "clan.lol base operating system";
inputs = {
#nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# https://github.com/NixOS/nixpkgs/pull/257462
nixpkgs.url = "github:Mic92/nixpkgs/fakeroot";
2023-08-05 09:42:48 +00:00
floco.url = "github:aakropotkin/floco";
floco.inputs.nixpkgs.follows = "nixpkgs";
2023-09-22 10:59:37 +00:00
disko.url = "github:nix-community/disko/party";
2023-07-28 14:37:10 +00:00
disko.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "sops-nix";
sops-nix.inputs.nixpkgs-stable.follows = "";
nixos-generators.url = "github:nix-community/nixos-generators";
nixos-generators.inputs.nixpkgs.follows = "nixpkgs";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs @ { flake-parts, ... }:
2023-07-21 12:01:56 +00:00
flake-parts.lib.mkFlake { inherit inputs; } ({ ... }: {
systems = [
"x86_64-linux"
"aarch64-linux"
2023-09-28 13:57:12 +00:00
"aarch64-darwin"
];
2023-07-12 16:25:25 +00:00
imports = [
./checks/flake-module.nix
2023-08-03 15:01:26 +00:00
./devShell.nix
./formatter.nix
./templates/flake-module.nix
2023-09-18 17:22:45 +00:00
./clanModules/flake-module.nix
2023-08-05 09:42:48 +00:00
./pkgs/flake-module.nix
./lib/flake-module.nix
./nixosModules/flake-module.nix
./nixosModules/clanCore/flake-module.nix
2023-07-12 16:25:25 +00:00
];
});
}