mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-18 15:36:57 +01:00
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{
|
|
nixpkgs,
|
|
home-manager,
|
|
nixos-generators,
|
|
system,
|
|
specialArgs,
|
|
nixos-modules,
|
|
home-module,
|
|
}: let
|
|
username = specialArgs.username;
|
|
in
|
|
nixpkgs.lib.nixosSystem {
|
|
inherit system specialArgs;
|
|
modules =
|
|
nixos-modules
|
|
++ [
|
|
{
|
|
# make `nix run nixpkgs#nixpkgs` use the same nixpkgs as the one used by this flake.
|
|
nix.registry.nixpkgs.flake = nixpkgs;
|
|
|
|
# make `nix repl '<nixpkgs>'` use the same nixpkgs as the one used by this flake.
|
|
environment.etc."nix/inputs/nixpkgs".source = "${nixpkgs}";
|
|
nix.nixPath = ["/etc/nix/inputs"];
|
|
}
|
|
|
|
nixos-generators.nixosModules.all-formats
|
|
{
|
|
# formatConfigs.iso = {config, ...}: {};
|
|
formatConfigs.proxmox = {config, ...}: {
|
|
# custom proxmox's image name
|
|
proxmox.qemuConf.name = "${config.networking.hostName}-nixos-${config.system.nixos.label}";
|
|
};
|
|
}
|
|
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
|
|
home-manager.extraSpecialArgs = specialArgs;
|
|
home-manager.users."${username}" = home-module;
|
|
}
|
|
];
|
|
}
|