Compare commits

..

No commits in common. "0b77381bb0737f20375c7dd771b45a0ae0fcdf6a" and "26521600a10f055282dfc8f4694b75218092a87e" have entirely different histories.

4 changed files with 38 additions and 62 deletions

View file

@ -8,14 +8,10 @@
sisyphus = {
desktop.sway.enable = true;
hardware = {
eid.enable = true;
nvidia = {
hardware.nvidia = {
enable = true;
model = "Quadro T2000";
};
yubikey.enable = true;
};
networking = {
networkmanager.enable = true;
@ -35,6 +31,7 @@
};
services = {
monero.enable = true;
pipewire.enable = true;
tailscale.enable = true;
};
@ -42,7 +39,7 @@
users.tdpeuter.enable = true;
virtualisation = {
docker.enable = true;
qemu.enable = true;
virtualbox.enable = true;
};
};

View file

@ -1,6 +1,5 @@
{
imports = [
./eid
./nvidia
./yubikey
];

View file

@ -1,18 +0,0 @@
{ config, lib, pkgs-unstable, ... }:
let
cfg = config.sisyphus.hardware.eid;
in {
options.sisyphus.hardware.eid.enable = lib.mkEnableOption "Electronic identity card (eID)";
config = lib.mkIf cfg.enable {
services.pcscd = {
enable = true;
plugins = [ pkgs-unstable.ccid ];
};
environment.systemPackages = with pkgs-unstable; [
eid-mw
];
};
}

View file

@ -18,15 +18,12 @@ in {
DisableFirefoxStudies = true;
DisablePocket = true;
DisableTelemetry = true;
ExtensionSettings = {};
OfferToSaveLogins = false;
};
# Support smart cards
pkcs11Modules = with pkgs-unstable; [
eid-mw
];
};
profiles.tdpeuter.search = {
profiles.tdpeuter = {
search = {
default = "DuckDuckGo";
force = true;
engines = {
@ -61,4 +58,5 @@ in {
};
};
};
};
}