Compare commits
4 commits
cf106a57fa
...
e6f78ce085
Author | SHA1 | Date | |
---|---|---|---|
e6f78ce085 | |||
05741a00fe | |||
9780b167d3 | |||
3364a4505d |
5 changed files with 23 additions and 7 deletions
|
@ -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;
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
3
nixos/includes/hardware/nitrokey.nix
Normal file
3
nixos/includes/hardware/nitrokey.nix
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
hardware.nitrokey.enable = true;
|
||||||
|
}
|
|
@ -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";
|
||||||
|
|
11
nixos/includes/system/sshclient.nix
Normal file
11
nixos/includes/system/sshclient.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue