system: Allow unfree packages
This commit is contained in:
parent
c36a5fa11a
commit
f85c532503
1 changed files with 8 additions and 0 deletions
|
|
@ -20,9 +20,17 @@
|
||||||
};
|
};
|
||||||
outputs = { self, hm, nixpkgs, agenix, ... }@inputs: {
|
outputs = { self, hm, nixpkgs, agenix, ... }@inputs: {
|
||||||
inherit self inputs;
|
inherit self inputs;
|
||||||
|
|
||||||
|
nixpkgs.config.allowUnfree = true; #Predicate = pkg: builtins.elem (nixpkgs.lib.getName pkg) [ "dropbox" ];
|
||||||
|
|
||||||
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem {
|
nixosConfigurations."thrall" = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
|
({
|
||||||
|
nixpkgs = {
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
|
})
|
||||||
inputs.snm.nixosModule
|
inputs.snm.nixosModule
|
||||||
./modules/security.nix
|
./modules/security.nix
|
||||||
./hosts/thrall
|
./hosts/thrall
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue