Compare commits

..

2 commits

Author SHA1 Message Date
65b7cf4ab6 School: configure helix with typecript lsp 2025-01-19 20:45:57 +01:00
a59b356e9d Flake: add the school role to archie 2025-01-19 12:37:01 +01:00
3 changed files with 12 additions and 0 deletions

View file

@ -200,6 +200,7 @@
./roles/desktop
./roles/kde
./roles/gaming
./roles/school
];
SurfaceGo.modules = [
nixos-hardware.nixosModules.microsoft-surface-go

View file

@ -1,6 +1,7 @@
{pkgs, ...}: {
imports = [
./android-studio.nix
./helix.nix
];
home-manager.users.toast.home.packages = [pkgs.mongodb-compass];
}

View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
home-manager.users.toast = {
programs.helix = {
extraPackages = with pkgs; [
typescript-language-server
nodePackages.prettier
];
};
};
}