mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 19:19:23 +01:00
30 lines
521 B
Nix
30 lines
521 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
nixGL = import ./../../home-manager/utils/nixGLWrap.nix { inherit pkgs config; };
|
|
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;
|
|
|
|
nixGLPrefix = lib.getExe pkgs.nixgl.nixGLIntel;
|
|
|
|
nix.settings.builders = "@/etc/nix/machines";
|
|
}
|