mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 13:22:34 +02:00
d71c9d8169
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
20 lines
388 B
Nix
20 lines
388 B
Nix
# Home-manager configuration for NixOS
|
|
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
backupFileExtension = "hm-backup";
|
|
extraSpecialArgs = {
|
|
inherit inputs;
|
|
pkgs-stable = import inputs.nixpkgs-stable {
|
|
system = pkgs.stdenv.hostPlatform.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
};
|
|
}
|