mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
29a0fd38ad
Signed-off-by: magic_rb <magic_rb@redalder.org>
43 lines
742 B
Nix
43 lines
742 B
Nix
{
|
|
inputs',
|
|
config',
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../common/nixpkgs.nix
|
|
];
|
|
|
|
nixpkgs.config.allowUnfreePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"slack"
|
|
"unrar"
|
|
"steam"
|
|
"steam-original"
|
|
"steam-run"
|
|
"nvidia-x11"
|
|
"nvidia-persistenced"
|
|
"nvidia-settings"
|
|
];
|
|
|
|
nixpkgs.overlays =
|
|
(with config'.flake.overlays; [
|
|
udp-over-tcp
|
|
emacsclient-remote
|
|
magic-screenshot
|
|
emacs-rofi
|
|
tree-sitter-grammars
|
|
emacs-master-nativecomp
|
|
rolling_datasets
|
|
virtiofsd-zfs
|
|
ledger-compat
|
|
ifstate
|
|
thingiverse-downloader
|
|
bumps-linux_6_8
|
|
])
|
|
++ (with inputs'.nixng.overlays; [
|
|
default
|
|
]);
|
|
}
|