Files
cnix/nixos/system/etc/home-manager/default.nix
cnst c08012466e ??
2024-08-02 18:48:27 +02:00

11 lines
152 B
Nix

{inputs, ...}: {
imports = [
inputs.hm.nixosModules.default
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
}