Compare commits
3 commits
889bff482c
...
f71f9f50fb
Author | SHA1 | Date | |
---|---|---|---|
![]() |
f71f9f50fb | ||
![]() |
63ba09cb0d | ||
![]() |
b6ad841847 |
|
@ -347,11 +347,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1745527190,
|
"lastModified": 1748387402,
|
||||||
"narHash": "sha256-5Dve5nrUc1TJkWbZ0iKs4VK3GFSXn8SmdT05MsvFblQ=",
|
"narHash": "sha256-5hae2UmVd42S/U6vp0+JQmjkgJrdKkp4vKM9+oEoQDQ=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "7411c96c0610c5d71235f84e80e58512a69a1a46",
|
"rev": "fe4068c9ec1a8f4184d632d47916580edc2f9c17",
|
||||||
"revCount": 13,
|
"revCount": 15,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.berlin.ccc.de/vinzenz/zerforschen.plus"
|
"url": "https://git.berlin.ccc.de/vinzenz/zerforschen.plus"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
config.programs.vscode = {
|
config = {
|
||||||
|
home.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
bbenoist.nix
|
jnoortheen.nix-ide
|
||||||
ms-python.python
|
ms-python.python
|
||||||
kamadorueda.alejandra
|
|
||||||
editorconfig.editorconfig
|
editorconfig.editorconfig
|
||||||
yzhang.markdown-all-in-one
|
yzhang.markdown-all-in-one
|
||||||
redhat.vscode-yaml
|
redhat.vscode-yaml
|
||||||
|
@ -49,10 +50,17 @@
|
||||||
"markdown.extension.toc.orderedList" = false;
|
"markdown.extension.toc.orderedList" = false;
|
||||||
"rust-analyzer.checkOnSave.command" = "clippy";
|
"rust-analyzer.checkOnSave.command" = "clippy";
|
||||||
|
|
||||||
|
"nix.formatterPath" = "${lib.getBin pkgs.nixfmt-rfc-style}/bin/nixfmt";
|
||||||
|
|
||||||
"\[makefile\]" = {
|
"\[makefile\]" = {
|
||||||
"editor.insertSpaces" = false;
|
"editor.insertSpaces" = false;
|
||||||
"editor.detectIndentation" = false;
|
"editor.detectIndentation" = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"\[nix\]" = {
|
||||||
|
"editor.formatOnSave" = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,8 +56,11 @@
|
||||||
servicepoint-simulator
|
servicepoint-simulator
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file."policy.json" = {
|
home.file = {
|
||||||
|
"policy.json" = {
|
||||||
target = ".config/containers/policy.json";
|
target = ".config/containers/policy.json";
|
||||||
text = builtins.readFile ./.config/containers/policy.json;
|
text = builtins.readFile ./.config/containers/policy.json;
|
||||||
};
|
};
|
||||||
|
"idea.properties".text = "idea.filewatcher.executable.path = ${pkgs.fsnotifier}/bin/fsnotifier";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
config.programs.vscode = {
|
config = {
|
||||||
|
home.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
bbenoist.nix
|
jnoortheen.nix-ide
|
||||||
ms-python.python
|
ms-python.python
|
||||||
kamadorueda.alejandra
|
|
||||||
editorconfig.editorconfig
|
editorconfig.editorconfig
|
||||||
yzhang.markdown-all-in-one
|
yzhang.markdown-all-in-one
|
||||||
redhat.vscode-yaml
|
redhat.vscode-yaml
|
||||||
|
@ -50,12 +51,20 @@
|
||||||
"explorer.excludeGitIgnore" = false;
|
"explorer.excludeGitIgnore" = false;
|
||||||
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
||||||
"markdown.extension.toc.orderedList" = false;
|
"markdown.extension.toc.orderedList" = false;
|
||||||
|
|
||||||
"rust-analyzer.checkOnSave.command" = "clippy";
|
"rust-analyzer.checkOnSave.command" = "clippy";
|
||||||
|
|
||||||
|
"nix.formatterPath" = "${lib.getBin pkgs.nixfmt-rfc-style}/bin/nixfmt";
|
||||||
|
|
||||||
"\[makefile\]" = {
|
"\[makefile\]" = {
|
||||||
"editor.insertSpaces" = false;
|
"editor.insertSpaces" = false;
|
||||||
"editor.detectIndentation" = false;
|
"editor.detectIndentation" = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"\[nix\]" = {
|
||||||
|
"editor.formatOnSave" = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue