forked from extern/nix-config
meta: Use packages module
May or may not separate or split this later.
This commit is contained in:
parent
ce4bd8f10f
commit
c6e3513a5d
@ -10,6 +10,5 @@
|
||||
./modules
|
||||
./overlays
|
||||
./specializations
|
||||
./src/main.nix
|
||||
];
|
||||
}
|
||||
|
@ -15,6 +15,7 @@
|
||||
./neovim.nix
|
||||
./networking.nix
|
||||
./nix.nix
|
||||
./packages.nix
|
||||
./piper.nix
|
||||
./pipewire.nix
|
||||
./resolved.nix
|
||||
|
@ -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 = [ ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user