Is there any practical difference between
users.users.default.packages = [
pkgs.foo
];
and
home-manager = {
users.default = {
config,
pkgs,
nixpkgs,
lib,
specialArgs,
options,
modulesPath,
nixosConfig,
osConfig,
}: {
home = {
packages = [
pkgs.foo
];
};
};
useGlobalPkgs = true;
};
Asked by l0b0
(53368 rep)
Oct 5, 2022, 01:43 AM
Last activity: Oct 5, 2022, 07:21 PM
Last activity: Oct 5, 2022, 07:21 PM