Separated applications and destops

This commit is contained in:
panotaka
2024-01-11 10:10:52 -04:00
parent ca11bf8250
commit ac8aa927d2
10 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,23 @@
{
inputs,
system,
pkgs,
...
}: {
home.packages = with pkgs; [
nil
alejandra
deadnix
];
programs.vscode = {
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
vscode-marketplace.jnoortheen.nix-ide
vscode-marketplace.kamadorueda.alejandra
];
userSettings = {
"nix.enableLanguageServer" = true;
"nix.serverPath" = "nil";
};
};
}