mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
16 lines
277 B
Nix
16 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;
|
|
};
|
|
}
|