meta: Use packages module

May or may not separate or split this later.
This commit is contained in:
Donovan Glover 2023-06-22 12:07:51 -04:00
parent ce4bd8f10f
commit c6e3513a5d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 7 additions and 6 deletions

View File

@ -10,6 +10,5 @@
./modules ./modules
./overlays ./overlays
./specializations ./specializations
./src/main.nix
]; ];
} }

View File

@ -15,6 +15,7 @@
./neovim.nix ./neovim.nix
./networking.nix ./networking.nix
./nix.nix ./nix.nix
./packages.nix
./piper.nix ./piper.nix
./pipewire.nix ./pipewire.nix
./resolved.nix ./resolved.nix

View File

@ -1,4 +1,6 @@
{ pkgs, lib, ... }: { { pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
grimblast grimblast
waycorner waycorner
@ -82,8 +84,7 @@
go-thumbnailer go-thumbnailer
]; ];
nixpkgs.config.allowUnfreePredicate = pkg: nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
builtins.elem (lib.getName pkg) [
"osu-lazer-bin" "osu-lazer-bin"
]; ];