mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-23 08:28:49 +01:00
18 lines
294 B
Nix
18 lines
294 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
imports = [ ./../../home-manager/modules/machine.nix ];
|
||
|
|
||
|
machine = {
|
||
|
username = "thilo";
|
||
|
isGeneric = true;
|
||
|
isGnome = false;
|
||
|
noiseSuppression.enable = false;
|
||
|
isGraphical = false;
|
||
|
};
|
||
|
|
||
|
fonts.fontconfig.enable = true;
|
||
|
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
}
|