mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-21 21:10:33 +01:00
41 lines
1.5 KiB
Nix
41 lines
1.5 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-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.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, 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 ]; };
|
|
}
|
|
(lib.optionalString (host == "lilith") inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t480)
|
|
];
|
|
});
|
|
};
|
|
}
|