Skip to content

Commit

Permalink
unfree spotify
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcPartensky committed Sep 11, 2023
1 parent f362c92 commit a4195f7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions nixos/.config/home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
# release notes.
home.stateVersion = "23.05"; # Please read the comment before changing.

nixpkgs.config.allowUnfree = true;

# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
wayland.windowManager.hyprland.enable = true;
Expand Down Expand Up @@ -467,8 +465,6 @@
ydotool
# pkgs.hello

### Proprietary
spotify

# # It is sometimes useful to fine-tune packages, for example, by applying
# # overrides. You can do that directly here, just don't forget the
Expand All @@ -484,4 +480,11 @@
# '')
];

nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
# Add additional package names here
spotify
];
}

}

0 comments on commit a4195f7

Please sign in to comment.