several nixgl things

This commit is contained in:
Thilo Billerbeck 2024-04-22 17:50:39 +02:00
parent 8346071197
commit b3b0098eb5
3 changed files with 56 additions and 18 deletions
configs/fedora

View file

@ -1,6 +1,8 @@
{ ... }:
{ pkgs, config, lib, inputs, ... }:
{
let
nixGL = import ./../../home-manager/utils/nixGLWrap.nix { inherit pkgs config; };
in {
imports = [ ./../../home-manager/modules/machine.nix ];
machine = {
@ -14,4 +16,11 @@
fonts.fontconfig.enable = true;
nixpkgs.config.allowUnfree = true;
nixGLPrefix = lib.getExe pkgs.nixgl.nixGLIntel;
home.packages = with pkgs; [
(nixGL insomnia)
(nixGL inputs.muse-sounds-manager.packages.x86_64-linux.muse-sounds-manager)
];
}