dotfiles/configs/fedora/home.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";
}