dotfiles/configs/fedora/home.nix

31 lines
521 B
Nix
Raw Normal View History

2024-05-28 14:38:22 +02:00
{
pkgs,
config,
lib,
inputs,
...
}:
2024-04-22 17:50:39 +02:00
let
nixGL = import ./../../home-manager/utils/nixGLWrap.nix { inherit pkgs config; };
2024-05-28 14:38:22 +02:00
in
{
imports = [ ./../../home-manager/modules/machine.nix ];
machine = {
username = "thilo";
isGeneric = true;
isGnome = false;
noiseSuppression.enable = false;
isGraphical = true;
};
fonts.fontconfig.enable = true;
nixpkgs.config.allowUnfree = true;
2024-04-22 17:50:39 +02:00
nixGLPrefix = lib.getExe pkgs.nixgl.nixGLIntel;
2024-05-03 20:19:31 +02:00
nix.settings.builders = "@/etc/nix/machines";
}