Flattening Home Manager into cli
This commit is contained in:
parent
0699cc4807
commit
33e41fd9a4
2
home.nix
2
home.nix
|
@ -6,8 +6,6 @@
|
||||||
home.username = "james";
|
home.username = "james";
|
||||||
home.homeDirectory = "/home/james";
|
home.homeDirectory = "/home/james";
|
||||||
|
|
||||||
home.packages = with pkgs; [ killall cmake zsh tmux ];
|
|
||||||
|
|
||||||
# This value determines the Home Manager release that your
|
# This value determines the Home Manager release that your
|
||||||
# configuration is compatible with. This helps avoid breakage
|
# configuration is compatible with. This helps avoid breakage
|
||||||
# when a new Home Manager release introduces backwards
|
# when a new Home Manager release introduces backwards
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
cmake
|
||||||
htop
|
htop
|
||||||
ripgrep
|
|
||||||
jq
|
jq
|
||||||
unzip
|
killall
|
||||||
|
ripgrep
|
||||||
silver-searcher
|
silver-searcher
|
||||||
|
tmux
|
||||||
|
unzip
|
||||||
|
zsh
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue
Block a user