Compare commits

..

No commits in common. "e6f78ce0853135d1ce4feb16cf8ba76f2edae6ec" and "cf106a57faaf2d2c047c9118de2b34cdd81dc81e" have entirely different histories.

5 changed files with 7 additions and 23 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 {
nativeMessagingHosts = [ cfg = {
# Tridactyl native connector # Tridactyl native connector
pkgs.tridactyl-native enableTridactylNative = true;
pkgs.browserpass enableBrowserpass = true;
]; };
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 = "1080,0"; position = "0,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 = "0,0"; position = "1920,0";
scale = "2"; scale = "2";
transform = "270"; transform = "90";
bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000";
}; };
}; };

View file

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

View file

@ -5,8 +5,6 @@
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

@ -1,11 +0,0 @@
{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";
};
}