This commit is contained in:
Morten Olsen
2023-09-19 20:17:43 +02:00
parent a7bfa09045
commit d783191931
4 changed files with 12 additions and 4 deletions

View File

@@ -15,6 +15,10 @@
xkbOptions = "caps:swapescape"; xkbOptions = "caps:swapescape";
}; };
environment.systemPackages = [
pkgs.wl-clipboard
];
# Enable CUPS to print documents. # Enable CUPS to print documents.
# services.printing.enable = true; # services.printing.enable = true;
fonts = { fonts = {

View File

@@ -34,9 +34,9 @@
react-devtools react-devtools
reduxdevtools reduxdevtools
hoppscotch hoppscotch
bitwarden
grammarly grammarly
vimium vimium
onepassword-password-manager
]; ];
}; };
}; };

View File

@@ -11,6 +11,9 @@ let
}; };
in { in {
programs.neovim.enable = true; programs.neovim.enable = true;
home.packages = [
pkgs.marksman
];
home.file = { home.file = {
".config/nvim" = { ".config/nvim" = {
source = astronvim; source = astronvim;

View File

@@ -32,9 +32,6 @@ if [ -d $HOME/.shellrc/rc.d ]; then
for file in $HOME/.shellrc/rc.d/*.sh; do for file in $HOME/.shellrc/rc.d/*.sh; do
source $file source $file
done done
for file in $HOME/.shellrc/rc.d/*.zsh; do
source $file
done
fi fi
# Load all files from .shell/zshrc.d directory # Load all files from .shell/zshrc.d directory
@@ -48,6 +45,10 @@ if [[ -n "$SSH_CONNECTION" ]] ;then
export PINENTRY_USER_DATA="USE_CURSES=1" export PINENTRY_USER_DATA="USE_CURSES=1"
fi fi
if [ -f $HOME/.systemrc ]; then
source $HOME/.systemrc
fi
[ -f ~/.env ] && source ~/.env [ -f ~/.env ] && source ~/.env