nixos update

This commit is contained in:
Michael Thomson 2024-03-01 09:33:13 -05:00
parent 7de68f3b74
commit 1a6510e65b
2 changed files with 18 additions and 0 deletions

View File

@ -80,6 +80,19 @@
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
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="
];
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
environment.systemPackages = with pkgs; [

View File

@ -8,6 +8,10 @@
../../modules/home-manager/zsh
../../modules/home-manager/tmux
../../modules/home-manager/taskwarrior
../../modules/home-manager/zoxide
../../modules/home-manager/eza
../../modules/home-manager/bat
../../modules/home-manager/irssi
];
home.username = "mthomson";
home.homeDirectory = "/home/mthomson";
@ -19,6 +23,7 @@
gcc
fzf
ripgrep
jq
];
programs.home-manager.enable = true;