mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
19 lines
614 B
Nix
19 lines
614 B
Nix
{ lib, system, user, inputs, agenix, home-manager, ... }:
|
|
{
|
|
inherit system;
|
|
specialArgs = { inherit user inputs home-manager; };
|
|
modules = [
|
|
../default # shared by all configs
|
|
../default/physical/configuration.nix # shared by physical machines
|
|
./configuration.nix # kestrel specific
|
|
./hardware.nix
|
|
../../modules
|
|
agenix.nixosModules.default
|
|
home-manager.nixosModules.home-manager {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.extraSpecialArgs = { inherit user; };
|
|
}
|
|
];
|
|
}
|