mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 09:10:32 +01:00
44 lines
1.5 KiB
Nix
44 lines
1.5 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
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";
|
|
inputs.nixvim = {
|
|
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
|
|
url = "github:nix-community/nixvim";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = inputs @ {self, nixpkgs, nixpkgs-master, firefox-addons, home-manager, agenix, nixos-hardware, nixvim, ...}: let
|
|
lib = nixpkgs.lib;
|
|
util = (import ./overlays/util.nix {} {}).util;
|
|
system = "x86_64-linux";
|
|
pkgs = import nixpkgs { inherit system; overlays =
|
|
util.nixFilesIn ./overlays; };
|
|
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;
|
|
|
|
# home-manager.extraSpecialArgs = inputs;
|
|
# home-manager.users.xqtc = {...}: {imports = [ ./home nixvim.homeManagerModules.nixvim ]; };
|
|
#}
|
|
];
|
|
specialArgs = { inherit inputs; };
|
|
});
|
|
};
|
|
}
|