Skip to content

Commit

Permalink
fix(systems/lavender): added stateVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
bddvlpr committed Sep 27, 2024
1 parent 736d30b commit 3c6ae47
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 10 additions & 0 deletions modules/home/vscode/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@
"workbench.iconTheme" = "catppuccin-macchiato";
"workbench.startupEditor" = "none";
"workbench.tree.indent" = 16;

"rust-analyzer.lens.implementations.enable" = false;

"[svelte]" = {
"editor.defaultFormatter" = "esbenp.prettier-vscode";
};

"[typescript]" = {
"editor.defaultFormatter" = "esbenp.prettier-vscode";
};
};

extensions = with pkgs.vscode-extensions; [
Expand Down
3 changes: 3 additions & 0 deletions systems/lavender/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
system.stateVersion = 5;
}
5 changes: 3 additions & 2 deletions systems/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
};

mkDarwin = host: system: {
"${host}" =
mkStrappedSystem host system darwinSystem [];
"${host}" = mkStrappedSystem host system darwinSystem [
./${host}
];
};
in {
flake = {
Expand Down

0 comments on commit 3c6ae47

Please sign in to comment.