nixos-config/flake.nix

84 lines
2.6 KiB
Nix
Raw Normal View History

2021-11-20 04:08:18 +00:00
{
inputs = {
2022-05-10 20:44:45 +00:00
nixos-hardware.url = "github:nixos/nixos-hardware";
2023-08-26 23:00:18 +00:00
utils.url = "github:numtide/flake-utils";
2024-01-22 02:31:34 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
artemist = {
url = "git+https://git.mildlyfunctional.gay/artemist/packages.git";
inputs.nixpkgs.follows = "nixpkgs";
inputs.utils.follows = "utils";
};
2023-09-10 05:18:56 +00:00
fonts = {
url = "git+https://git.mildlyfunctional.gay/artemist/fonts.git";
inputs.artemist.follows = "artemist";
2023-09-10 05:18:56 +00:00
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "utils";
2023-09-10 05:18:56 +00:00
};
lanzaboote = {
url = "github:nix-community/lanzaboote/v0.3.0";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "utils";
};
2021-11-20 04:08:18 +00:00
home-manager = {
2023-08-30 20:58:52 +00:00
url = "github:nix-community/home-manager";
2021-11-20 04:08:18 +00:00
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
2024-01-10 00:28:00 +00:00
inputs.home-manager.follows = "home-manager";
inputs.nix-darwin.follows = "";
};
2023-10-05 00:34:34 +00:00
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
2021-11-20 04:08:18 +00:00
rustybar = {
2023-12-12 00:44:02 +00:00
url =
"git+https://git.mildlyfunctional.gay/mildlyfunctionalgays/rustybar.git";
2021-11-20 04:08:18 +00:00
inputs.nixpkgs.follows = "nixpkgs";
inputs.utils.follows = "utils";
2021-11-20 04:08:18 +00:00
};
2023-11-29 02:08:29 +00:00
jovian = {
url = "github:jovian-experiments/jovian-nixos";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nix-github-actions.follows = "";
2023-11-29 02:08:29 +00:00
};
2023-08-26 23:00:18 +00:00
private.url =
2023-11-29 20:49:22 +00:00
"git+ssh://forgejo@git.mildlyfunctional.gay/artemist/nixos-config-private?ref=unified";
2021-11-20 04:08:18 +00:00
};
2023-11-29 02:08:29 +00:00
outputs = { self, nixpkgs, home-manager, utils, nixvim, ... }@inputs:
2021-11-20 04:08:18 +00:00
let
baseDir = ./system;
lib = nixpkgs.lib;
makeSystem = module:
lib.nixosSystem (rec {
2023-08-30 20:58:52 +00:00
specialArgs = { inherit inputs; };
2021-11-21 19:35:25 +00:00
modules = [
home-manager.nixosModules.home-manager
2023-08-26 23:00:18 +00:00
{ home-manager.extraSpecialArgs = specialArgs; }
] ++ [ module ];
2021-11-21 19:35:25 +00:00
});
2023-08-26 23:00:18 +00:00
in {
nixosConfigurations =
lib.mapAttrs (name: _: makeSystem (baseDir + "/${name}"))
(builtins.readDir baseDir);
2023-08-26 23:00:18 +00:00
} // utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
2023-10-27 05:19:15 +00:00
in {
formatter = pkgs.nixfmt;
2023-10-27 06:06:33 +00:00
packages = {
nvim = inputs.nixvim.legacyPackages."${system}".makeNixvimWithModule {
extraSpecialArgs = { inherit inputs; };
module = import ./sets/nvim.nix {
path = [ ];
inherit (pkgs) lib;
};
};
2023-10-27 06:06:33 +00:00
};
2023-10-27 05:19:15 +00:00
});
2021-11-20 04:08:18 +00:00
}