mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-12-26 21:30:51 +01:00
25 lines
379 B
Nix
25 lines
379 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
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;
|
|
|
|
nix.settings.builders = "@/etc/nix/machines";
|
|
}
|