From 5123d327c2087bfb31193601ffece47d46d8f952 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 11 Jul 2021 04:24:32 -0600 Subject: [PATCH] [NixOS] Add quill-qr --- nixos/full.nix | 1 + nixos/internet-computer.nix | 5 +++-- nixos/machines/biskcomp.nix | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/nixos/full.nix b/nixos/full.nix index 07f04e0c..4cefbab7 100644 --- a/nixos/full.nix +++ b/nixos/full.nix @@ -6,5 +6,6 @@ ./base.nix ./code.nix ./essential-no-arm.nix + ./internet-computer.nix ]; } diff --git a/nixos/internet-computer.nix b/nixos/internet-computer.nix index 0912e540..eaa3cfa9 100644 --- a/nixos/internet-computer.nix +++ b/nixos/internet-computer.nix @@ -1,7 +1,8 @@ { pkgs, ... }: { environment.systemPackages = with pkgs; [ - # ic-keysmith - # quill + ic-keysmith + quill + quill-qr ]; } diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index e33c875e..eab5c304 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -2,6 +2,7 @@ imports = [ ../raspberry-pi.nix ../jellyfin.nix + # ../internet-computer.nix ];