Compare commits
No commits in common. "cae62a54426cdee04f767249047d8bc58d6aecf5" and "e3a0a9a6f59a7724802e4ea0aa894fd03031fe46" have entirely different histories.
cae62a5442
...
e3a0a9a6f5
8 changed files with 2 additions and 42 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ nixos-config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
time.timeZone = "Etc/GMT-1";
|
time.timeZone = "Etc/GMT-1";
|
||||||
isGraphical = true;
|
isGraphical = true;
|
||||||
|
@ -6,6 +6,5 @@
|
||||||
./kde
|
./kde
|
||||||
./documentation.nix
|
./documentation.nix
|
||||||
./graphical/fonts.nix
|
./graphical/fonts.nix
|
||||||
"${nixos-config}/services/security-key"
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -122,10 +122,6 @@ in
|
||||||
"widget.use-xdg-desktop-portal.mime-handler" = 1;
|
"widget.use-xdg-desktop-portal.mime-handler" = 1;
|
||||||
"widget.use-xdg-desktop-portal.open-uri" = 1;
|
"widget.use-xdg-desktop-portal.open-uri" = 1;
|
||||||
"widget.use-xdg-desktop-portal.settings" = 1;
|
"widget.use-xdg-desktop-portal.settings" = 1;
|
||||||
"extensions.pocket.enabled" = false;
|
|
||||||
"browser.newtabpage.activity-stream.showSponsored" = false;
|
|
||||||
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
|
|
||||||
"browser.newtabpage.activity-stream.default.sites" = "";
|
|
||||||
};
|
};
|
||||||
userChrome = ''
|
userChrome = ''
|
||||||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
imapnotify = {
|
imapnotify = {
|
||||||
enable = true;
|
enable = true;
|
||||||
onNotify = "${pkgs.isync}/bin/mbsync test-%s";
|
onNotify = "${pkgs.isync}/bin/mbsync test-%s";
|
||||||
onNotifyPost = "${pkgs.notmuch}/bin/notmuch new && ${pkgs.libnotify}/bin/notify-send 'New mail arrived'";
|
onNotifyPost.mail = "${pkgs.notmuch}/bin/notmuch new && ${pkgs.libnotify}/bin/notify-send 'New mail arrived'";
|
||||||
};
|
};
|
||||||
mbsync = {
|
mbsync = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -2,6 +2,5 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./kdeconnect.nix
|
./kdeconnect.nix
|
||||||
./gpg
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
{ config, ... }:
|
|
||||||
{
|
|
||||||
programs.gpg = {
|
|
||||||
enable = true;
|
|
||||||
homedir = "${config.xdg.dataHome}/gnupg";
|
|
||||||
mutableKeys = false;
|
|
||||||
mutableTrust = false;
|
|
||||||
scdaemonSettings.disable-ccid = true;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./pcscd.nix
|
|
||||||
./tpm2.nix
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,6 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
services.pcscd = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
security.tpm2 = {
|
|
||||||
enable = true;
|
|
||||||
abrmd.enable = true;
|
|
||||||
pkcs11.enable = true;
|
|
||||||
tctiEnvironment.enable = true;
|
|
||||||
};
|
|
||||||
services.tcsd.enable = true;
|
|
||||||
systemd.tpm2.enable = true;
|
|
||||||
}
|
|
Loading…
Reference in a new issue