feat(home-pc): add ausweisapp
This commit is contained in:
parent
b443dc6a66
commit
c54373bac7
|
@ -10,6 +10,7 @@
|
||||||
./virtualisation/docker.nix
|
./virtualisation/docker.nix
|
||||||
./services/syncthing/felix-nixos.nix
|
./services/syncthing/felix-nixos.nix
|
||||||
./services/jellyfin.nix
|
./services/jellyfin.nix
|
||||||
|
./services/pcscd.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
swapDevices = [{ device = "/swap/swapfile"; }];
|
swapDevices = [{ device = "/swap/swapfile"; }];
|
||||||
|
|
5
home/ausweisapp.nix
Normal file
5
home/ausweisapp.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
with pkgs; {
|
||||||
|
home.packages = [ AusweisApp2 ];
|
||||||
|
}
|
|
@ -13,6 +13,7 @@
|
||||||
./signal.nix
|
./signal.nix
|
||||||
./browsers
|
./browsers
|
||||||
./planck.nix
|
./planck.nix
|
||||||
|
./ausweisapp.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
services.redshift = {
|
services.redshift = {
|
||||||
|
|
7
services/pcscd.nix
Normal file
7
services/pcscd.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# for reader used with AusweisApp2
|
||||||
|
services.pcscd.enable = true;
|
||||||
|
services.pcscd.plugins = with pkgs; [ ccid pcsc-cyberjack ];
|
||||||
|
}
|
Loading…
Reference in a new issue