Small typo fixes after restructuring
This commit is contained in:
parent
4225fa73da
commit
5ff34bbfc6
@ -11,7 +11,7 @@
|
|||||||
./modules/linux-only-utils.nix
|
./modules/linux-only-utils.nix
|
||||||
./modules/networking.nix
|
./modules/networking.nix
|
||||||
./modules/neovim.nix
|
./modules/neovim.nix
|
||||||
./modules/tmux.conf
|
./modules/tmux.nix
|
||||||
./modules/zsh.nix
|
./modules/zsh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
home.packages = with pkgs [
|
home.packages = with pkgs; [
|
||||||
ncdu
|
ncdu
|
||||||
nvtopPackages.full
|
nvtopPackages.full
|
||||||
];
|
];
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ pkgs, lib, config, ... }: let
|
{ pkgs, lib, config, ... }: let
|
||||||
mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config };
|
mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config; };
|
||||||
in {
|
in {
|
||||||
home.packages = with pkgs [ tmux ];
|
home.packages = with pkgs; [ tmux ];
|
||||||
home.file = {
|
home.file = {
|
||||||
"tmux/plugins/tpm".source = "${mypkgs.tpm}";
|
"tmux/plugins/tpm".source = "${mypkgs.tpm}";
|
||||||
".tmux.conf".source = ../../dotfiles/.tmux.conf;
|
".tmux.conf".source = ../../dotfiles/.tmux.conf;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user