1
0
forked from extern/nix-config

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
./overlays
./specializations
./src/main.nix
];
}

View File

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

View File

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