23 lines
420 B
Nix
23 lines
420 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.home-manager.nixosModules.default
|
|
./options.nix
|
|
./configs/persist
|
|
./configs/sops
|
|
];
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs; };
|
|
backupFileExtension = "bak";
|
|
useGlobalPkgs = true;
|
|
sharedModules = [{
|
|
home.stateVersion = "24.05";
|
|
systemd.user.startServices = "sd-switch";
|
|
}];
|
|
};
|
|
|
|
programs.dconf.enable = true;
|
|
}
|