Compare commits
No commits in common. "2a4e5b5a96023875068c4a6d44f6c1c65fb2cbae" and "ea0c3544efe1ce786d414b81454dbb39424a9caa" have entirely different histories.
2a4e5b5a96
...
ea0c3544ef
4 changed files with 33 additions and 57 deletions
|
@ -9,7 +9,6 @@
|
||||||
desktop.sway.enable = true;
|
desktop.sway.enable = true;
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
eid.enable = true;
|
|
||||||
nvidia = {
|
nvidia = {
|
||||||
enable = true;
|
enable = true;
|
||||||
model = "Quadro T2000";
|
model = "Quadro T2000";
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./eid
|
|
||||||
./nvidia
|
./nvidia
|
||||||
./yubikey
|
./yubikey
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
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.ccid ];
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
eid-mw
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -18,46 +18,42 @@ 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 = {
|
||||||
|
default = "DuckDuckGo";
|
||||||
|
force = true;
|
||||||
|
engines = {
|
||||||
|
"Bing".metaData.hidden = true;
|
||||||
|
"eBay".metaData.hidden = true;
|
||||||
|
|
||||||
profiles.tdpeuter.search= {
|
"Nix Packages" = {
|
||||||
default = "DuckDuckGo";
|
urls = [{
|
||||||
force = true;
|
template = "https://search.nixos.org/packages";
|
||||||
engines = {
|
params = [
|
||||||
"Bing".metaData.hidden = true;
|
{ name = "type"; value = "packages"; }
|
||||||
"eBay".metaData.hidden = true;
|
{ name = "query"; value = "{searchTerms}"; }
|
||||||
"Qwant".metaData.hidden = true;
|
];
|
||||||
|
}];
|
||||||
|
|
||||||
"Nix Packages" = {
|
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||||
urls = [{
|
definedAliases = [ "@np" ];
|
||||||
template = "https://search.nixos.org/packages";
|
};
|
||||||
params = [
|
"GitHub" = {
|
||||||
{ name = "type"; value = "packages"; }
|
urls = [{
|
||||||
{ name = "query"; value = "{searchTerms}"; }
|
template = "https://github.com/search";
|
||||||
];
|
params = [
|
||||||
}];
|
{ name = "q"; value = "{searchTerms}"; }
|
||||||
|
{ name = "type"; value = "repositories"; }
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
|
||||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
icon = "${pkgs.icosystem}/share/icons/icosystem/scalable/apps/github-mark.svg";
|
||||||
definedAliases = [ "@np" ];
|
definedAliases = [ "@gh" ];
|
||||||
};
|
};
|
||||||
"GitHub" = {
|
|
||||||
urls = [{
|
|
||||||
template = "https://github.com/search";
|
|
||||||
params = [
|
|
||||||
{ name = "q"; value = "{searchTerms}"; }
|
|
||||||
{ name = "type"; value = "repositories"; }
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
|
|
||||||
icon = "${pkgs.icosystem}/share/icons/icosystem/scalable/apps/github-mark.svg";
|
|
||||||
definedAliases = [ "@gh" ];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue