26 lines
672 B
Nix
26 lines
672 B
Nix
{ lib, inputs, ... }:
|
|
|
|
{
|
|
|
|
config = {
|
|
homeconfig = {
|
|
graphical = lib.mkDefault false;
|
|
minimal = lib.mkDefault false;
|
|
|
|
hyprland.enable = false;
|
|
};
|
|
|
|
|
|
nix = {
|
|
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
|
settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
builders = "ssh://builder x86_64-linux,aarch64-linux /run/secrets/remoteBuildKey 1 1 nixos-test,benchmark,big-parallel,kvm - -";
|
|
builders-use-substituters = true;
|
|
};
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
};
|
|
}
|