remove dev dependencies and added cachix

This commit is contained in:
Michael Thomson 2024-02-28 15:38:48 -05:00
parent b38b6512ea
commit a1067ac63e
No known key found for this signature in database
2 changed files with 16 additions and 2 deletions

View File

@ -6,6 +6,19 @@
inputs.home-manager.darwinModules.default inputs.home-manager.darwinModules.default
]; ];
nix.settings = {
trusted-users = ["mthomson"];
substituters = [
"https://cache.nixos.org"
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
users.users.mthomson = { users.users.mthomson = {
home = "/Users/mthomson"; home = "/Users/mthomson";
}; };

View File

@ -16,8 +16,9 @@
btop btop
spotify-player spotify-player
neofetch neofetch
nodejs jq
corepack_latest fzf
ripgrep
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;