nixos-config/flake.nix

44 lines
1.5 KiB
Nix
Raw Normal View History

2024-01-12 15:59:57 +01:00
{
inputs = {
2024-02-20 21:02:36 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-01-12 15:59:57 +01:00
flake-utils.url = "github:numtide/flake-utils";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
2024-01-12 15:59:57 +01:00
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
2024-01-12 15:59:57 +01:00
};
};
2024-03-03 12:34:10 +01:00
#inputs.agenix.url = "github:ryantm/agenix";
inputs.firefox-addons.url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master";
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";
2024-01-12 15:59:57 +01:00
2024-01-28 22:51:43 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-03-03 12:34:10 +01:00
outputs = inputs @ {self, nixpkgs, nixpkgs-master, firefox-addons, home-manager, nixos-hardware, 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 = 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;
2024-01-12 15:59:57 +01:00
# home-manager.extraSpecialArgs = inputs;
# home-manager.users.xqtc = {...}: {imports = [ ./home nixvim.homeManagerModules.nixvim ]; };
#}
2024-01-28 22:51:43 +01:00
];
specialArgs = { inherit inputs; };
2024-01-12 15:59:57 +01:00
});
};
}