mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-04-22 02:09:02 +02:00
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
|
./modules
|
||||||
./overlays
|
./overlays
|
||||||
./specializations
|
./specializations
|
||||||
./src/main.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
@ -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"
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user