mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-12 20:18:49 +01:00
17 lines
277 B
Nix
17 lines
277 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./../modules/machine.nix
|
||
|
];
|
||
|
|
||
|
machine = {
|
||
|
username = "thilo";
|
||
|
isGeneric = true;
|
||
|
nixPackage = pkgs.nixUnstable;
|
||
|
isGnome = false;
|
||
|
noiseSuppression.enable = false;
|
||
|
isGraphical = false;
|
||
|
};
|
||
|
}
|