Compare commits

...

4 commits

5 changed files with 23 additions and 7 deletions

View file

@ -10,11 +10,11 @@ in
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = pkgs.wrapFirefox pkgs.firefox-unwrapped { package = pkgs.wrapFirefox pkgs.firefox-unwrapped {
cfg = { nativeMessagingHosts = [
# Tridactyl native connector # Tridactyl native connector
enableTridactylNative = true; pkgs.tridactyl-native
enableBrowserpass = true; pkgs.browserpass
}; ];
extraPolicies = { extraPolicies = {
DontCheckDefaultBrowser = true; DontCheckDefaultBrowser = true;
DisablePocket = true; DisablePocket = true;

View file

@ -2,15 +2,15 @@ _: {
wayland.windowManager.sway.config.output = { wayland.windowManager.sway.config.output = {
"Iiyama North America PL2792UH 1166310803122" = { "Iiyama North America PL2792UH 1166310803122" = {
mode = "3840x2160@60Hz"; mode = "3840x2160@60Hz";
position = "0,0"; position = "1080,0";
scale = "2"; scale = "2";
bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
}; };
"Iiyama North America PL2792UH 1176923201598" = { "Iiyama North America PL2792UH 1176923201598" = {
mode = "3840x2160@60Hz"; mode = "3840x2160@60Hz";
position = "1920,0"; position = "0,0";
scale = "2"; scale = "2";
transform = "90"; transform = "270";
bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
}; };
}; };

View file

@ -0,0 +1,3 @@
{
hardware.nitrokey.enable = true;
}

View file

@ -5,6 +5,8 @@
i18n = { i18n = {
# defaultLocale = "en_US.UTF-8"; # defaultLocale = "en_US.UTF-8";
extraLocaleSettings = { extraLocaleSettings = {
LANGUAGE = "en_US.UTF-8";
LC_ALL = "en_US.UTF-8";
LANG = "en_US.UTF-8"; LANG = "en_US.UTF-8";
LC_TIME = "en_DK.UTF-8"; LC_TIME = "en_DK.UTF-8";
LC_DATE = "en_DK.UTF-8"; LC_DATE = "en_DK.UTF-8";

View file

@ -0,0 +1,11 @@
{pkgs, ...}:
{
environment.systemPackages = with pkgs; [
lxqt.lxqt-openssh-askpass
];
programs.ssh = {
startAgent = false;
enableAskPassword = true;
askPassword = "${pkgs.lxqt.lxqt-openssh-askpass}/bin/lxqt-openssh-askpass";
};
}