fix: add missing allowUnfree options

This commit is contained in:
xezo360hye 2024-08-12 22:24:07 +03:00
parent de224ad756
commit 95f82db97b
2 changed files with 5 additions and 0 deletions

View File

@ -61,6 +61,7 @@
"${username}@${hostname}" = home-manager.lib.homeManagerConfiguration { "${username}@${hostname}" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs { pkgs = import nixpkgs {
system = "x86_64-linux"; system = "x86_64-linux";
config.allowUnfree = true;
overlays = [ nur.overlay ]; overlays = [ nur.overlay ];
}; };
extraSpecialArgs = { inherit inputs; }; extraSpecialArgs = { inherit inputs; };

View File

@ -94,5 +94,9 @@
sessionVariables = { sessionVariables = {
ANI_CLI_PLAYER = "mpv"; ANI_CLI_PLAYER = "mpv";
}; };
file = {
".config/nixpkgs/config.nix".text = "{ allowUnfree = true; }";
};
}; };
} }