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