mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-07 00:22:33 +02:00
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;
|
|
};
|
|
};
|
|
};
|
|
}
|