dotfiles/machines/desktop.nix

20 lines
354 B
Nix
Raw Normal View History

2023-05-17 01:18:35 +02:00
{ config, pkgs, lib, ... }:
2023-08-21 02:24:55 +02:00
{
2023-05-17 01:18:35 +02:00
imports = [
2023-08-21 02:24:55 +02:00
./../modules/machine.nix
2023-05-17 01:18:35 +02:00
];
2023-08-21 02:24:55 +02:00
machine = {
username = "thilo";
isGeneric = false;
nixPackage = pkgs.nixUnstable;
2023-10-28 00:21:38 +02:00
isGnome = false;
2023-08-21 02:24:55 +02:00
noiseSuppression.enable = true;
isGraphical = true;
2023-08-13 01:04:51 +02:00
};
2023-10-28 00:21:38 +02:00
services.kdeconnect.enable = true;
services.kdeconnect.indicator = true;
2023-05-17 01:18:35 +02:00
}