nixos-config/flake.nix

43 lines
1.3 KiB
Nix
Raw Normal View History

2024-01-12 15:59:57 +01:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
flake-utils.url = "github:numtide/flake-utils";
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2024-01-28 22:51:43 +01:00
inputs.nixvim = {
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
url = "github:nix-community/nixvim/nixos-23.11";
2024-01-12 15:59:57 +01:00
2024-01-28 22:51:43 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
outputs = inputs @ {self, nixpkgs, home-manager, nixvim, ...}: let
2024-01-12 15:59:57 +01:00
lib = nixpkgs.lib;
util = (import ./overlays/util.nix {} {}).util;
system = "x86_64-linux";
2024-01-28 22:51:43 +01:00
pkgs = import nixpkgs { inherit system; overlays =
util.nixFilesIn ./overlays; };
2024-01-12 15:59:57 +01:00
in {
#nixosConfigurations = {
# lambda = lib.nixosSystem {
# system = "x86_64-linux";
# modules = [ ./lambda/ ];
# };
#};
nixosConfigurations = pkgs.util.mapHostAttrs (host: host) (host: lib.nixosSystem {
inherit system;
modules = [ ./hosts/${host} home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = inputs;
2024-01-28 22:51:43 +01:00
home-manager.users.xqtc = {...}: {imports = [ ./home/lambda nixvim.homeManagerModules.nixvim ]; };
}
];
2024-01-12 15:59:57 +01:00
});
};
}