1
0
forked from extern/nix-config

nix: Continue simplifying file structure

This commit is contained in:
Donovan Glover 2023-06-05 12:10:55 -04:00
parent 84af6079e4
commit d97aa7fa1e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 14 additions and 19 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, hypr-contrib, nix-gaming, ... }: { pkgs, lib, hypr-contrib, nix-gaming, ... }:
{ {
imports = [ imports = [
@ -6,7 +6,6 @@
./user.nix ./user.nix
./desktop ./desktop
./dev ./dev
./games.nix
./host ./host
./containers/rar.nix ./containers/rar.nix
./containers/wine.nix ./containers/wine.nix
@ -39,9 +38,21 @@
boot.tmp.useTmpfs = true; boot.tmp.useTmpfs = true;
environment.systemPackages = [ programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
hypr-contrib.packages."x86_64-linux".grimblast hypr-contrib.packages."x86_64-linux".grimblast
nix-gaming.packages."x86_64-linux".osu-stable nix-gaming.packages."x86_64-linux".osu-stable
(pkgs.callPackage ./packages/waycorner { })
(pkgs.callPackage ./packages/srb2 { })
slade
typespeed
osu-lazer-bin
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
"vmware-workstation"
]; ];
environment.sessionVariables = { environment.sessionVariables = {

View File

@ -1,16 +0,0 @@
{ pkgs, lib, ... }:
{
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
(pkgs.callPackage ./packages/srb2 { })
slade
typespeed
osu-lazer-bin
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"osu-lazer-bin"
];
}