Compare commits
3 commits
22161de954
...
33fae52e47
| Author | SHA1 | Date | |
|---|---|---|---|
| 33fae52e47 | |||
| 31f1036c17 | |||
| 18716e58ca |
4 changed files with 12 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -5,3 +5,6 @@ result-*
|
||||||
|
|
||||||
# ---> Ansible
|
# ---> Ansible
|
||||||
*.retry
|
*.retry
|
||||||
|
|
||||||
|
# https://github.com/ansible/ansible-lint/issues/4533
|
||||||
|
.ansible/
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,6 @@
|
||||||
})
|
})
|
||||||
inputs.agenix.packages.${system}.default
|
inputs.agenix.packages.${system}.default
|
||||||
inputs.plasma-manager.packages.${system}.rc2nix
|
inputs.plasma-manager.packages.${system}.rc2nix
|
||||||
pkgs.ansible
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -3,9 +3,9 @@
|
||||||
{
|
{
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Katherina Walshe-Grey";
|
settings = {
|
||||||
userEmail = "git@qenya.tel";
|
user.email = "git@qenya.tel";
|
||||||
extraConfig = {
|
user.name = "Katherina Walshe-Grey";
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
pull.rebase = true;
|
pull.rebase = true;
|
||||||
push.autoSetupRemote = true;
|
push.autoSetupRemote = true;
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ in
|
||||||
enableExtensionUpdateCheck = false;
|
enableExtensionUpdateCheck = false;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
|
redhat.ansible
|
||||||
ms-python.black-formatter
|
ms-python.black-formatter
|
||||||
ms-azuretools.vscode-docker
|
ms-azuretools.vscode-docker
|
||||||
mkhl.direnv
|
mkhl.direnv
|
||||||
|
|
@ -27,8 +28,12 @@ in
|
||||||
shopify.ruby-lsp
|
shopify.ruby-lsp
|
||||||
charliermarsh.ruff
|
charliermarsh.ruff
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
|
redhat.vscode-yaml
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
|
"ansible.validation.lint.enabled" = true;
|
||||||
|
"ansible.python.interpreterPath" = "\${workspaceFolder}/.venv/bin/python"; # needs some manual one-time setup per repo, but it's better than fucking with FHS
|
||||||
|
"ansible.lightspeed.enabled" = false;
|
||||||
"css.format.spaceAroundSelectorSeparator" = true;
|
"css.format.spaceAroundSelectorSeparator" = true;
|
||||||
"css.format.newlineBetweenSelectors" = false;
|
"css.format.newlineBetweenSelectors" = false;
|
||||||
"debug.allowBreakpointsEverywhere" = true;
|
"debug.allowBreakpointsEverywhere" = true;
|
||||||
|
|
@ -47,6 +52,7 @@ in
|
||||||
formatting.command = [ "${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt" ];
|
formatting.command = [ "${pkgs.nixpkgs-fmt}/bin/nixpkgs-fmt" ];
|
||||||
nix.flake.autoArchive = true;
|
nix.flake.autoArchive = true;
|
||||||
};
|
};
|
||||||
|
"redhat.telemetry.enabled" = false;
|
||||||
"rust-analyzer.check.command" = "clippy";
|
"rust-analyzer.check.command" = "clippy";
|
||||||
"terminal.integrated.allowChords" = false;
|
"terminal.integrated.allowChords" = false;
|
||||||
"terminal.integrated.defaultProfile.linux" = "zsh";
|
"terminal.integrated.defaultProfile.linux" = "zsh";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue