From 418a43f7f6d0b832a017f894625de6ba3c4b33db Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 2 May 2025 12:52:18 -0600 Subject: [PATCH] update garrus and work --- dev.nix | 20 ++++++++++++++++++++ hosts/x86_64/garrus/configuration.nix | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 dev.nix diff --git a/dev.nix b/dev.nix new file mode 100644 index 0000000..9d7e9a9 --- /dev/null +++ b/dev.nix @@ -0,0 +1,20 @@ +{ config, pkgs, ... }: + +{ + # virt-manager + virtualisation.libvirtd.enable = true; + + # Packages + environment.systemPackages = with pkgs; [ + # Rust + cargo + rustc + clang + + # VM + quickemu + spice + spice-gtk + virt-manager + ]; +} diff --git a/hosts/x86_64/garrus/configuration.nix b/hosts/x86_64/garrus/configuration.nix index bd95533..85c2479 100644 --- a/hosts/x86_64/garrus/configuration.nix +++ b/hosts/x86_64/garrus/configuration.nix @@ -7,10 +7,10 @@ # Name your host machine networking.hostName = "garrus"; - # System76 environment.systemPackages = with pkgs; [ + # System76 Tools system76-keyboard-configurator firmware-manager ]; - + }