diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a931378 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +result/* +result diff --git a/flake.lock b/flake.lock index 16649b3..668dd59 100644 --- a/flake.lock +++ b/flake.lock @@ -104,11 +104,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1787070829, - "narHash": "sha256-vXNVDVtvfiQuXthP0NHPFdNvvMTkGpx0UP8oddIWbNk=", + "lastModified": 1787135253, + "narHash": "sha256-RD2kNWCG+Bjo6h+JVjWVNntZs2GtRoeY2xHjts/FNkA=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "0ae2bc1419c3f345984c2629e72e7a631820fa4d", + "rev": "ffb3c9b700e759be2ef13237c9d8f953b32a1e46", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3912363..227f6f4 100644 --- a/flake.nix +++ b/flake.nix @@ -19,14 +19,13 @@ overlays = with inputs; [ tmux.overlay - tmux.overlays."nixpkgs/plusultra" ]; # Build the package set for the homies environment packages = { homies = let pkgs = import inputs.nixpkgs { - system = "x86_64-linux"; # Default, will be overridden by system-specific builds + system = "aarch64-darwin"; # Default, will be overridden by system-specific builds }; in pkgs.buildEnv { @@ -66,13 +65,13 @@ rustc # For enabling Rust support rust-analyzer # For Rust LSP python3 # For Python support - python3Packages.pyright # For Python LSP - nodejs # For JavaScript/TypeScript support - nodePackages.typescript-language-server # For TS LSP + #python3Packages.pyright # For Python LSP + #nodejs # For JavaScript/TypeScript support + #nodePackages.typescript-language-server # For TS LSP go # For Go support gopls # For Go LSP - openjdk # For Java support - jdt.ls # For Java LSP + #openjdk # For Java support + #jdt.ls # For Java LSP ]; }; }; @@ -103,4 +102,4 @@ # nix build .#homies # nix profile install .#homies }; -} \ No newline at end of file +}