formatting and ts stuff

This commit is contained in:
2026-03-09 14:34:26 +00:00
parent c005e5a061
commit 267b2c6d76
2 changed files with 48 additions and 39 deletions
+6 -2
View File
@@ -1,6 +1,10 @@
{inputs,self,...}:{
{
inputs,
self,
...
}: {
flake.nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
specialArgs = {inherit inputs;};
modules = [
self.nixosModules.overlay
self.nixosModules.nixos-host
+7 -2
View File
@@ -1,7 +1,8 @@
{ inputs, ... }: {
{inputs, ...}: {
flake.nixosModules.development = {pkgs, ...}: {
environment.systemPackages = with pkgs; [
nodejs_24
nixfmt
zellij
nixd
@@ -17,8 +18,12 @@
tailwindcss-language-server
biome
# Treesitter CLI for downloading grammars
# Treesitter CLI + C compiler for building grammars
tree-sitter
gcc
# Nix formatter (uses tabs by default)
alejandra
];
programs.neovim = {