Fix warnings

This commit is contained in:
Paul-Henri Froidmont 2025-10-03 17:03:13 +02:00
parent 3abfa5d11d
commit 1261c6fd1d
Signed by: phfroidmont
GPG key ID: BE948AFD7E7873BE
6 changed files with 19 additions and 7 deletions

View file

@ -80,6 +80,7 @@
}
];
};
services.logind.settings.Login.HandleLidSwitch = "ignore";
users.users.${config.user.name} = {
openssh.authorizedKeys.keyFiles = [
../../ssh_keys/phfroidmont-desktop.pub

View file

@ -55,6 +55,4 @@
services.blueman.enable = true;
services.logind.lidSwitch = "ignore";
}

View file

@ -53,7 +53,7 @@
services.blueman.enable = true;
services.logind.lidSwitch = "ignore";
services.logind.settings.Login.HandleLidSwitch = "ignore";
user.name = "phfroidmont";

View file

@ -79,6 +79,19 @@ in
};
ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks."*" = {
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
serverAliveInterval = 0;
serverAliveCountMax = 3;
hashKnownHosts = false;
userKnownHostsFile = "~/.ssh/known_hosts";
controlMaster = "no";
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
extraConfig = ''
# Force IPv4 otherwise git will try to use IPv6 which doesn't play well through a VPN
AddressFamily inet

View file

@ -163,10 +163,9 @@ in
};
};
gestures = {
workspace_swipe = true;
workspace_swipe_fingers = 3;
};
gesture = [
"3, horizontal, workspace"
];
animations = {
enabled = true;

View file

@ -3,6 +3,7 @@ return {
"nvim-treesitter/nvim-treesitter",
opts = {
auto_install = false,
sync_install = false,
ensure_installed = {},
parser_install_dir = vim.fs.joinpath(vim.fn.stdpath('data'), 'site'),
},