2024-04-22 17:50:39 +02:00
|
|
|
{ pkgs, config, lib, inputs, ... }:
|
2024-04-19 02:18:25 +02:00
|
|
|
|
2024-04-22 17:50:39 +02:00
|
|
|
let
|
|
|
|
nixGL = import ./../../home-manager/utils/nixGLWrap.nix { inherit pkgs config; };
|
|
|
|
in {
|
2024-04-19 02:18:25 +02:00
|
|
|
imports = [ ./../../home-manager/modules/machine.nix ];
|
|
|
|
|
|
|
|
machine = {
|
|
|
|
username = "thilo";
|
|
|
|
isGeneric = true;
|
|
|
|
isGnome = false;
|
|
|
|
noiseSuppression.enable = false;
|
2024-04-28 03:53:21 +02:00
|
|
|
isGraphical = true;
|
2024-04-19 02:18:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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";
|
2024-04-19 02:18:25 +02:00
|
|
|
}
|