[NixOS] Add quill-qr

This commit is contained in:
Ivan Malison 2021-07-11 04:24:32 -06:00
parent c8ad9de976
commit 5123d327c2
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
3 changed files with 5 additions and 2 deletions

View File

@ -6,5 +6,6 @@
./base.nix ./base.nix
./code.nix ./code.nix
./essential-no-arm.nix ./essential-no-arm.nix
./internet-computer.nix
]; ];
} }

View File

@ -1,7 +1,8 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# ic-keysmith ic-keysmith
# quill quill
quill-qr
]; ];
} }

View File

@ -2,6 +2,7 @@
imports = [ imports = [
../raspberry-pi.nix ../raspberry-pi.nix
../jellyfin.nix ../jellyfin.nix
# ../internet-computer.nix # ../internet-computer.nix
]; ];