diff --git a/home-manager/firefox/default.nix b/home-manager/firefox/default.nix index 83ca6d8..010de88 100644 --- a/home-manager/firefox/default.nix +++ b/home-manager/firefox/default.nix @@ -10,11 +10,11 @@ in programs.firefox = { enable = true; package = pkgs.wrapFirefox pkgs.firefox-unwrapped { - cfg = { + nativeMessagingHosts = [ # Tridactyl native connector - enableTridactylNative = true; - enableBrowserpass = true; - }; + pkgs.tridactyl-native + pkgs.browserpass + ]; extraPolicies = { DontCheckDefaultBrowser = true; DisablePocket = true; diff --git a/home-manager/hosts/mrmeeseeks.nix b/home-manager/hosts/mrmeeseeks.nix index 27dfc6f..5c4cffc 100644 --- a/home-manager/hosts/mrmeeseeks.nix +++ b/home-manager/hosts/mrmeeseeks.nix @@ -2,15 +2,15 @@ _: { wayland.windowManager.sway.config.output = { "Iiyama North America PL2792UH 1166310803122" = { mode = "3840x2160@60Hz"; - position = "0,0"; + position = "1080,0"; scale = "2"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; }; "Iiyama North America PL2792UH 1176923201598" = { mode = "3840x2160@60Hz"; - position = "1920,0"; + position = "0,0"; scale = "2"; - transform = "90"; + transform = "270"; bg = "~/medias/images/wallpapers/desktop.jpg center #000000"; }; }; diff --git a/nixos/includes/hardware/nitrokey.nix b/nixos/includes/hardware/nitrokey.nix new file mode 100644 index 0000000..8ffd61b --- /dev/null +++ b/nixos/includes/hardware/nitrokey.nix @@ -0,0 +1,3 @@ +{ + hardware.nitrokey.enable = true; +} diff --git a/nixos/includes/system/locales.nix b/nixos/includes/system/locales.nix index 3378d3c..8d94d16 100644 --- a/nixos/includes/system/locales.nix +++ b/nixos/includes/system/locales.nix @@ -5,6 +5,8 @@ i18n = { # defaultLocale = "en_US.UTF-8"; extraLocaleSettings = { + LANGUAGE = "en_US.UTF-8"; + LC_ALL = "en_US.UTF-8"; LANG = "en_US.UTF-8"; LC_TIME = "en_DK.UTF-8"; LC_DATE = "en_DK.UTF-8"; diff --git a/nixos/includes/system/sshclient.nix b/nixos/includes/system/sshclient.nix new file mode 100644 index 0000000..06098ba --- /dev/null +++ b/nixos/includes/system/sshclient.nix @@ -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"; + }; +}