425f7894a4
Export those listed in `profiles/default.nix` to be included in the flake output `nixosModules` for easy use in other flakes.
52 lines
988 B
Nix
52 lines
988 B
Nix
args@{ home, nixpkgs, self, ... }:
|
|
let
|
|
utils = import ../lib/utils.nix { lib = nixpkgs.lib; };
|
|
|
|
inherit (utils)
|
|
recImport
|
|
;
|
|
|
|
inherit (builtins)
|
|
attrValues
|
|
removeAttrs
|
|
;
|
|
|
|
|
|
config = this:
|
|
nixpkgs.lib.nixosSystem rec {
|
|
system = "x86_64-linux";
|
|
|
|
modules = let
|
|
core = ../profiles/core.nix;
|
|
|
|
global = {
|
|
networking.hostName = this;
|
|
nix.nixPath = [
|
|
"nixpkgs=${nixpkgs}"
|
|
"nixos-config=/etc/nixos/configuration.nix"
|
|
];
|
|
system.configurationRevision = self.rev;
|
|
|
|
nixpkgs.overlays = self.overlays;
|
|
};
|
|
|
|
local = import "${toString ./.}/${this}.nix";
|
|
|
|
flakeModules = removeAttrs self.nixosModules
|
|
[ "profiles" ];
|
|
|
|
in
|
|
attrValues flakeModules ++ [
|
|
core
|
|
global
|
|
local
|
|
home.nixosModules.home-manager
|
|
];
|
|
|
|
};
|
|
|
|
hosts =
|
|
recImport { dir = ./.; _import = config; };
|
|
in
|
|
hosts
|