dotfiles/machines/desktop.nix

17 lines
275 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;
isGnome = true;
noiseSuppression.enable = true;
isGraphical = true;
2023-08-13 01:04:51 +02:00
};
2023-05-17 01:18:35 +02:00
}