nix-config/hosts/capibara/home-manager.nix

22 lines
480 B
Nix
Raw Normal View History

2023-08-13 12:30:14 +02:00
{ inputs, outputs, config, pkgs, ... }:
{
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs outputs; };
users.rilla = {
home = {
packages = [ pkgs.offline-backups ];
stateVersion = "22.11";
username = "rilla";
homeDirectory = "/home/rilla";
2023-08-13 12:30:14 +02:00
};
imports = [
outputs.homeManagerModules.common
outputs.homeManagerModules.extra
];
};
};
}