Compare commits
3 commits
26521600a1
...
0b77381bb0
Author | SHA1 | Date | |
---|---|---|---|
0b77381bb0 | |||
1c8e7e9b93 | |||
985f687cc4 |
4 changed files with 62 additions and 38 deletions
|
@ -8,9 +8,13 @@
|
||||||
sisyphus = {
|
sisyphus = {
|
||||||
desktop.sway.enable = true;
|
desktop.sway.enable = true;
|
||||||
|
|
||||||
hardware.nvidia = {
|
hardware = {
|
||||||
enable = true;
|
eid.enable = true;
|
||||||
model = "Quadro T2000";
|
nvidia = {
|
||||||
|
enable = true;
|
||||||
|
model = "Quadro T2000";
|
||||||
|
};
|
||||||
|
yubikey.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
@ -31,7 +35,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
monero.enable = true;
|
|
||||||
pipewire.enable = true;
|
pipewire.enable = true;
|
||||||
tailscale.enable = true;
|
tailscale.enable = true;
|
||||||
};
|
};
|
||||||
|
@ -39,7 +42,7 @@
|
||||||
users.tdpeuter.enable = true;
|
users.tdpeuter.enable = true;
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
qemu.enable = true;
|
docker.enable = true;
|
||||||
virtualbox.enable = true;
|
virtualbox.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./eid
|
||||||
./nvidia
|
./nvidia
|
||||||
./yubikey
|
./yubikey
|
||||||
];
|
];
|
||||||
|
|
18
nixos/modules/hardware/eid/default.nix
Normal file
18
nixos/modules/hardware/eid/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{ 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -18,42 +18,44 @@ in {
|
||||||
DisableFirefoxStudies = true;
|
DisableFirefoxStudies = true;
|
||||||
DisablePocket = true;
|
DisablePocket = true;
|
||||||
DisableTelemetry = true;
|
DisableTelemetry = true;
|
||||||
ExtensionSettings = {};
|
|
||||||
OfferToSaveLogins = false;
|
OfferToSaveLogins = false;
|
||||||
};
|
};
|
||||||
|
# Support smart cards
|
||||||
|
pkcs11Modules = with pkgs-unstable; [
|
||||||
|
eid-mw
|
||||||
|
];
|
||||||
};
|
};
|
||||||
profiles.tdpeuter = {
|
|
||||||
search = {
|
profiles.tdpeuter.search = {
|
||||||
default = "DuckDuckGo";
|
default = "DuckDuckGo";
|
||||||
force = true;
|
force = true;
|
||||||
engines = {
|
engines = {
|
||||||
"Bing".metaData.hidden = true;
|
"Bing".metaData.hidden = true;
|
||||||
"eBay".metaData.hidden = true;
|
"eBay".metaData.hidden = true;
|
||||||
|
|
||||||
"Nix Packages" = {
|
"Nix Packages" = {
|
||||||
urls = [{
|
urls = [{
|
||||||
template = "https://search.nixos.org/packages";
|
template = "https://search.nixos.org/packages";
|
||||||
params = [
|
params = [
|
||||||
{ name = "type"; value = "packages"; }
|
{ name = "type"; value = "packages"; }
|
||||||
{ name = "query"; value = "{searchTerms}"; }
|
{ name = "query"; value = "{searchTerms}"; }
|
||||||
];
|
];
|
||||||
}];
|
}];
|
||||||
|
|
||||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||||
definedAliases = [ "@np" ];
|
definedAliases = [ "@np" ];
|
||||||
};
|
};
|
||||||
"GitHub" = {
|
"GitHub" = {
|
||||||
urls = [{
|
urls = [{
|
||||||
template = "https://github.com/search";
|
template = "https://github.com/search";
|
||||||
params = [
|
params = [
|
||||||
{ name = "q"; value = "{searchTerms}"; }
|
{ name = "q"; value = "{searchTerms}"; }
|
||||||
{ name = "type"; value = "repositories"; }
|
{ name = "type"; value = "repositories"; }
|
||||||
];
|
];
|
||||||
}];
|
}];
|
||||||
|
|
||||||
icon = "${pkgs.icosystem}/share/icons/icosystem/scalable/apps/github-mark.svg";
|
icon = "${pkgs.icosystem}/share/icons/icosystem/scalable/apps/github-mark.svg";
|
||||||
definedAliases = [ "@gh" ];
|
definedAliases = [ "@gh" ];
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue