-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: factorize nixos config and centralize unfree predicate
- Loading branch information
Showing
15 changed files
with
463 additions
and
356 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
pkgs: | ||
|
||
# List of all unfree packages authorized | ||
|
||
let | ||
inherit (builtins) elem; | ||
inherit (pkgs.lib) getName; | ||
in | ||
package: elem (getName package) [ | ||
# NixOS | ||
"steam" | ||
"steam-original" | ||
"steam-run" | ||
|
||
# Home Manager | ||
"authy" | ||
"discord" | ||
"spotify" | ||
"thorium-browser" | ||
"unrar" | ||
"geogebra" | ||
] |
Oops, something went wrong.