mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-12 20:18:49 +01:00
23 lines
511 B
Nix
23 lines
511 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";
|
|
}
|