mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 05:12:34 +02:00
9e24c44c53
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
16 lines
380 B
Nix
16 lines
380 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;
|
|
};
|
|
};
|
|
};
|
|
}
|