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