dotfiles/configs/fedora/home.nix

26 lines
379 B
Nix
Raw Normal View History

2024-05-28 14:38:22 +02:00
{
pkgs,
config,
lib,
inputs,
...
}:
2024-05-28 14:38:22 +02:00
{
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;
2024-04-22 17:50:39 +02:00
2024-05-03 20:19:31 +02:00
nix.settings.builders = "@/etc/nix/machines";
}