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} = {
|
users.users.${config.user.name} = {
|
||||||
openssh.authorizedKeys.keyFiles = [
|
openssh.authorizedKeys.keyFiles = [
|
||||||
../../ssh_keys/phfroidmont-desktop.pub
|
../../ssh_keys/phfroidmont-desktop.pub
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,4 @@
|
||||||
|
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
services.logind.lidSwitch = "ignore";
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
|
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.settings.Login.HandleLidSwitch = "ignore";
|
||||||
|
|
||||||
user.name = "phfroidmont";
|
user.name = "phfroidmont";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -79,6 +79,19 @@ in
|
||||||
};
|
};
|
||||||
ssh = {
|
ssh = {
|
||||||
enable = true;
|
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 = ''
|
extraConfig = ''
|
||||||
# Force IPv4 otherwise git will try to use IPv6 which doesn't play well through a VPN
|
# Force IPv4 otherwise git will try to use IPv6 which doesn't play well through a VPN
|
||||||
AddressFamily inet
|
AddressFamily inet
|
||||||
|
|
|
||||||
|
|
@ -163,10 +163,9 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
gestures = {
|
gesture = [
|
||||||
workspace_swipe = true;
|
"3, horizontal, workspace"
|
||||||
workspace_swipe_fingers = 3;
|
];
|
||||||
};
|
|
||||||
|
|
||||||
animations = {
|
animations = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
opts = {
|
opts = {
|
||||||
auto_install = false,
|
auto_install = false,
|
||||||
|
sync_install = false,
|
||||||
ensure_installed = {},
|
ensure_installed = {},
|
||||||
parser_install_dir = vim.fs.joinpath(vim.fn.stdpath('data'), 'site'),
|
parser_install_dir = vim.fs.joinpath(vim.fn.stdpath('data'), 'site'),
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue