dotfiles/home-manager/machines/wsl.nix

16 lines
240 B
Nix
Raw Normal View History

2023-09-11 01:28:30 +02:00
{ config, pkgs, lib, ... }:
{
imports = [
./../modules/machine.nix
];
machine = {
username = "thilo";
isGeneric = true;
isGnome = false;
noiseSuppression.enable = false;
isGraphical = false;
};
}