Flattening Home Manager into cli

This commit is contained in:
James Patrick 2022-03-04 23:41:38 -05:00
parent 0699cc4807
commit 33e41fd9a4
2 changed files with 6 additions and 4 deletions

View File

@ -6,8 +6,6 @@
home.username = "james";
home.homeDirectory = "/home/james";
home.packages = with pkgs; [ killall cmake zsh tmux ];
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards

View File

@ -1,10 +1,14 @@
{ config, pkgs, ... }: {
environment.systemPackages = with pkgs; [
cmake
htop
ripgrep
jq
unzip
killall
ripgrep
silver-searcher
tmux
unzip
zsh
];
}