Compare commits

...

2 Commits

Author SHA1 Message Date
Marcel Kapfer 4803fd59c1
🐛 (nix/home-manager) Use Emacs GTK 2023-07-18 23:41:49 +02:00
Marcel Kapfer 6a53abe503
(flatpak-sync) Add apps.list and stow/nix config 2023-07-18 23:41:28 +02:00
3 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,13 @@
# Creative
org.darktable.Darktable
org.gimp.GIMP
org.inkscape.Inkscape
org.kde.digikam
org.kde.krita
# Messaging
com.github.eneshecan.WhatsAppForLinux
org.signal.Signal
# Multimedia
com.spotify.Client

View File

@ -38,6 +38,7 @@
# plain files is through 'home.file'. # plain files is through 'home.file'.
home.file = { home.file = {
".config/nvim/init.vim".source = ~/.dotfiles/neovim/.config/nvim/init.vim; ".config/nvim/init.vim".source = ~/.dotfiles/neovim/.config/nvim/init.vim;
".config/flatpak-sync/apps.list".source = ~/.dotfiles/flatpak-sync/.config/flatpak-sync/apps.list;
# # You can also set the file content immediately. # # You can also set the file content immediately.
# ".gradle/gradle.properties".text = '' # ".gradle/gradle.properties".text = ''
@ -59,6 +60,7 @@
programs.emacs = { programs.emacs = {
enable = true; enable = true;
package = pkgs.emacs-gtk;
extraPackages = epkgs: [ extraPackages = epkgs: [
epkgs.nix-mode epkgs.nix-mode
epkgs.vterm epkgs.vterm

View File

@ -16,7 +16,7 @@ function success {
echo -e "${PRIMARY}${BRAND} ${SUCCESS}$1${NC}" echo -e "${PRIMARY}${BRAND} ${SUCCESS}$1${NC}"
} }
DEFAULT_STOW_PKGS="alacritty systemd picom bash fish zsh stumpwm qutebrowser redshift neovim dunst x" DEFAULT_STOW_PKGS="alacritty flatpak-sync systemd picom bash fish zsh stumpwm qutebrowser redshift neovim dunst x"
STOW_PKGS=${STOW_PKGS:=$DEFAULT_STOW_PKGS} STOW_PKGS=${STOW_PKGS:=$DEFAULT_STOW_PKGS}
WORK_DOTFILES="${WORK_DOTFILES:=$(pwd)/dot-work}" WORK_DOTFILES="${WORK_DOTFILES:=$(pwd)/dot-work}"