Fix warnings
This commit is contained in:
parent
3abfa5d11d
commit
1261c6fd1d
6 changed files with 19 additions and 7 deletions
|
|
@ -80,6 +80,7 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
services.logind.settings.Login.HandleLidSwitch = "ignore";
|
||||
users.users.${config.user.name} = {
|
||||
openssh.authorizedKeys.keyFiles = [
|
||||
../../ssh_keys/phfroidmont-desktop.pub
|
||||
|
|
|
|||
|
|
@ -55,6 +55,4 @@
|
|||
|
||||
services.blueman.enable = true;
|
||||
|
||||
services.logind.lidSwitch = "ignore";
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
services.blueman.enable = true;
|
||||
|
||||
services.logind.lidSwitch = "ignore";
|
||||
services.logind.settings.Login.HandleLidSwitch = "ignore";
|
||||
|
||||
user.name = "phfroidmont";
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -163,10 +163,9 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
gestures = {
|
||||
workspace_swipe = true;
|
||||
workspace_swipe_fingers = 3;
|
||||
};
|
||||
gesture = [
|
||||
"3, horizontal, workspace"
|
||||
];
|
||||
|
||||
animations = {
|
||||
enabled = true;
|
||||
|
|
|
|||
|
|
@ -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'),
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue