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
];
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 = {
home = "/Users/mthomson";
};

View File

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