This commit is contained in:
Miguel Palhas
2024-10-04 17:52:26 +01:00
parent 7ab89c1f28
commit 460c2b2429
3 changed files with 3 additions and 5 deletions
+1 -4
View File
@@ -1,4 +1 @@
{ inputs, pkgs, foundry, ... }: {
home.packages = with pkgs; [ foundry-bin solc ];
programs = { gh.enable = true; };
}
{ pkgs, ... }: { programs = { gh.enable = true; }; }
+1 -1
View File
@@ -1,5 +1,5 @@
{ lib, config, ... }: {
imports = [ ./basePrograms.nix ./zsh.nix ./neovim ];
imports = [ ./basePrograms.nix ./zsh.nix ./neovim ./solidity.nix ];
home = {
homeDirectory = lib.mkDefault "/home/${config.home.username}";
+1
View File
@@ -0,0 +1 @@
{ pkgs, ... }: { home.packages = with pkgs; [ foundry-bin solc ]; }