dotfiles/machines/desktop.nix

18 lines
317 B
Nix

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