diff options
| author | Mike Vink <ivi@vinkies.net> | 2024-01-08 23:34:58 +0100 |
|---|---|---|
| committer | Mike Vink <ivi@vinkies.net> | 2024-01-08 23:34:58 +0100 |
| commit | 25d9705750755aeddf093cb5834b385ae3ff8ffc (patch) | |
| tree | 76301a7080be4addca7cf7cf1a4eaeb731ac9466 /profiles | |
| parent | 9afed39b20971a296b1350c96ed632bb975279b2 (diff) | |
fixup
Diffstat (limited to 'profiles')
| -rw-r--r-- | profiles/core/configuration.nix | 1 | ||||
| -rw-r--r-- | profiles/core/git.nix | 2 | ||||
| -rw-r--r-- | profiles/station/virtualisation.nix | 14 |
3 files changed, 16 insertions, 1 deletions
diff --git a/profiles/core/configuration.nix b/profiles/core/configuration.nix index 4694974..c79d6d9 100644 --- a/profiles/core/configuration.nix +++ b/profiles/core/configuration.nix @@ -53,6 +53,7 @@ inetutils usbutils zoxide + binwalk ]; nix.package = pkgs.nixUnstable; diff --git a/profiles/core/git.nix b/profiles/core/git.nix index 31136ee..70b4648 100644 --- a/profiles/core/git.nix +++ b/profiles/core/git.nix @@ -1,4 +1,4 @@ -{config, lib, ...}: with lib; { +{lib, ...}: with lib; { hm = { programs.git = { enable = true; diff --git a/profiles/station/virtualisation.nix b/profiles/station/virtualisation.nix new file mode 100644 index 0000000..63dd746 --- /dev/null +++ b/profiles/station/virtualisation.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + virt-viewer + ]; + virtualisation.libvirtd.enable = true; + programs.virt-manager.enable = true; + hm.dconf.settings = { + "org/virt-manager/virt-manager/connections" = { + autoconnect = ["qemu:///system"]; + uris = ["qemu:///system"]; + }; + }; + ivi.extraGroups = [ "libvirtd" ]; +} |
