feat: add new host T430

This commit is contained in:
Jacob Bachmann 2024-01-13 11:15:29 +01:00
parent 2b1ba53706
commit 696e2f291a
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
3 changed files with 106 additions and 0 deletions

25
hosts/T430/default.nix Executable file
View file

@ -0,0 +1,25 @@
{ ... }: {
imports = [ ./hardware.nix ];
networking.hostName = "T430"; # Define your hostname.
bchmnn = {
gui = {
enable = true;
flavour = [ "sway" "i3" ];
};
nvidia.enable = false;
audio.enable = true;
bluetooth.enable = true;
printing.enable = true;
vpn.enable = true;
devenv.enable = true;
virtualisation.enable = true;
games.enable = true;
};
}