refactor(common): move common stuff out of droid and default
This commit is contained in:
parent
bd7e203fb1
commit
0982a473de
8 changed files with 74 additions and 98 deletions
common/home
|
@ -1,7 +1,7 @@
|
|||
# Check git status of nix configs
|
||||
(
|
||||
cd ~/.nix || exit 1
|
||||
git fetch --all > /dev/null
|
||||
git fetch --all --quiet
|
||||
GIT=$(git -c color.status=always status |
|
||||
grep -v -e "On branch" \
|
||||
-e "up to date" \
|
||||
|
|
|
@ -5,5 +5,6 @@
|
|||
./neovim
|
||||
./nix-index
|
||||
./tmux
|
||||
./packages.nix
|
||||
];
|
||||
}
|
||||
|
|
27
common/home/packages.nix
Normal file
27
common/home/packages.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.packages =
|
||||
(with config.customPkgs; [
|
||||
pokemon-colorscripts
|
||||
repl
|
||||
])
|
||||
++ (with pkgs.nodePackages; [
|
||||
undollar
|
||||
])
|
||||
++ (with pkgs; [
|
||||
dracula-theme
|
||||
neofetch
|
||||
progress
|
||||
wget
|
||||
tree
|
||||
mosh
|
||||
rsync
|
||||
killall
|
||||
imagemagick
|
||||
usbutils
|
||||
zip
|
||||
]);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue