dotfiles/machines/desktop.nix

16 lines
275 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./../modules/machine.nix
];
machine = {
username = "thilo";
isGeneric = false;
nixPackage = pkgs.nixUnstable;
isGnome = true;
noiseSuppression.enable = true;
isGraphical = true;
};
}