mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
16 lines
258 B
Nix
16 lines
258 B
Nix
|
{ inputs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./../../home-manager/modules/machine.nix
|
||
|
];
|
||
|
|
||
|
machine = {
|
||
|
username = "thilo";
|
||
|
isGeneric = true;
|
||
|
isGnome = false;
|
||
|
noiseSuppression.enable = false;
|
||
|
isGraphical = false;
|
||
|
};
|
||
|
}
|