add package module authenticator

This commit is contained in:
Kim, Jimin 2024-10-11 08:53:27 +09:00
parent 5e2892fc72
commit fb7b853c94
Signed by: pomp
GPG key ID: D3932F82A0667A3B
2 changed files with 8 additions and 0 deletions

View file

@ -13,6 +13,7 @@
imports = [
./hardware-configuration.nix
../../modules/nixos/locale.nix
../../modules/package/authenticator.nix
../../modules/package/killall.nix
../../modules/package/nautilus.nix
../../modules/package/otd.nix

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
authenticator
];
}