From cecf68f70885c2d35013b2fa5792d758f60aabf5 Mon Sep 17 00:00:00 2001 From: Matthew Bessette Date: Fri, 26 Jul 2024 22:10:13 -0400 Subject: [PATCH] Fixed thunderbolt and added gaming --- _hosts/argon/README.md | 5 +++++ _hosts/argon/configuration.nix | 17 +++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 _hosts/argon/README.md diff --git a/_hosts/argon/README.md b/_hosts/argon/README.md new file mode 100644 index 0000000..142d34f --- /dev/null +++ b/_hosts/argon/README.md @@ -0,0 +1,5 @@ +# Hardware + +## Thunderbolt +Device ID (0-0): d1cc8780-a003-c6ad-ffff-ffffffffffff +Device ID (1-0): 64078780-21bf-3488-ffff-ffffffffffff \ No newline at end of file diff --git a/_hosts/argon/configuration.nix b/_hosts/argon/configuration.nix index c62fa73..d7cef28 100644 --- a/_hosts/argon/configuration.nix +++ b/_hosts/argon/configuration.nix @@ -16,7 +16,7 @@ system.stateVersion = "23.11"; # Did you read the comment? # Bootloader. - boot.loader.systemd-boot.enable = true;e + boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.luks.devices."luks-e9ee8166-a569-4bfc-9ada-fb2b718d9ad5".device = "/dev/disk/by-uuid/e9ee8166-a569-4bfc-9ada-fb2b718d9ad5"; @@ -55,6 +55,9 @@ services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true; + # Thunderbolt Controller + services.hardware.bolt.enable = true; + # Configure keymap in X11 services.xserver = { layout = "us"; @@ -101,8 +104,17 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - vim + # Kernel Tools + pciutils + plasma5Packages.plasma-thunderbolt + + # Applications + moonlight-qt + steam + + # Cli nodejs_22 + vim ]; ################## @@ -125,5 +137,6 @@ # SERVICES # ############ + services.fwupd.enable = true; # ... }