nix-config/home/nixos-common.nix

194 lines
3.6 KiB
Nix
Raw Normal View History

2022-03-14 09:59:06 +01:00
{ config, inputs, pkgs, stablePkgs, ... }:
2022-01-28 15:11:30 +01:00
2022-02-23 12:40:21 +01:00
{
2022-01-28 15:11:30 +01:00
# Let Home Manager install and manage itself.
# programs.home-manager.enable = true;
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "rilla";
home.homeDirectory = "/home/rilla";
imports = [
./arduino
./barrier
./browsers
2022-02-21 18:22:19 +01:00
./cheat
2022-01-28 15:11:30 +01:00
./dav
./fonts
./git
./gotify
./gpg
./idasen
2022-03-14 15:20:17 +01:00
./lf
2022-01-28 15:11:30 +01:00
./mail
2022-02-13 15:55:35 +01:00
./maker
2022-01-28 15:11:30 +01:00
./minidisc
./mpd
./msg
./music
./neovim
2022-04-24 17:51:40 +02:00
./nsxiv
2022-01-28 15:11:30 +01:00
./pass
./rss
./snapcast
./sound
./ssh
./tmux
./vitetris
./wallets
2022-04-11 10:00:47 +02:00
./wine
2022-03-15 08:20:18 +01:00
./xdg
2022-01-28 15:11:30 +01:00
./zsh
];
2022-05-11 19:59:39 +02:00
home.persistence."/persist/${config.home.homeDirectory}" = {
directories = [
".Slic3r"
".abook"
".bitmonero"
".cache"
".config/Element"
".config/Nextcloud"
".config/Signal"
".config/SuperCollider"
".config/ardour6"
".config/chromium"
".config/kdeconnect"
".config/kicad"
".config/whatsapp-for-linux"
".gnupg/private-keys-v1.d"
".hydrogen"
".librewolf"
".local/share/Bisq"
".local/share/SuperCollider"
".local/share/TelegramDesktop"
".local/share/dino"
".local/share/keyrings"
".local/share/mpd"
".local/share/webkitgtk"
".local/state/wireplumber"
".mozilla"
".newsboat"
".password-store"
".vagrant.d"
".vdirsyncer"
".walletwasabi"
".wine"
"Audio"
"Calendars"
"Contacts"
"Documents"
"Downloads"
"Images"
"Maildir"
"Monero"
"Nextcloud"
"code"
"configs"
"misc"
"workspace"
];
files = [
".gnupg/pubring.kbx"
".gnupg/trustdb.gpg"
".mailsynclastrun"
".ssh/known_hosts"
".zsh_history"
".lmmsrc.xml"
];
allowOther = true;
2022-01-28 15:11:30 +01:00
};
home.sessionVariables = {
EDITOR = "${pkgs.neovim}/bin/nvim";
VISUAL = "${pkgs.neovim}/bin/nvim";
BROWSER = "${pkgs.firefox}/bin/firefox";
# OPENER = "todo"; # todo
TERMINAL = "${pkgs.alacritty}/bin/alacritty";
CM_LAUNCHER = "rofi"; # for clipmenu
LEDGER_FILE = "${config.home.homeDirectory}/finance/2021.journal";
QT_QPA_PLATFORMTHEME = "qt5ct";
};
home.packages = with pkgs; [
R
acpi
android-tools
ansible
bind.dnsutils
2022-04-17 19:21:23 +02:00
# calibre
2022-01-28 15:11:30 +01:00
docker-compose
file
gimp
gnumake
2022-01-31 11:03:32 +01:00
html-tidy
2022-01-28 15:11:30 +01:00
htop
2022-03-15 14:29:23 +01:00
inetutils # telnet
2022-01-31 11:03:32 +01:00
j2cli
2022-01-28 15:11:30 +01:00
jq
killall
libnotify
libreoffice
lxqt.pcmanfm-qt
mosh
mpv
neofetch
networkmanagerapplet
nextcloud-client
pandoc
pv
ripgrep
2022-01-31 11:03:32 +01:00
sassc
2022-03-15 14:29:23 +01:00
shellcheck
2022-01-28 15:11:30 +01:00
signify
2022-04-24 16:56:12 +02:00
unzip
2022-04-10 20:22:09 +02:00
vagrant
2022-01-28 15:11:30 +01:00
virt-manager
wget
];
services.syncthing.enable = true;
2022-01-31 13:06:18 +01:00
services.kdeconnect = {
enable = true;
indicator = true;
};
2022-01-28 15:11:30 +01:00
programs.bat = {
enable = true;
config = { theme = "gruvbox-dark"; };
};
programs.fzf = {
enable = true;
enableZshIntegration = true;
# defaultOptions = [
# "--preview --preview 'bat --color=always --style=header,grid --line-range :300 {}'"
# ];
tmux.enableShellIntegration = true;
};
services.gnome-keyring = {
enable = true;
components = [ "secrets" ];
};
services.nextcloud-client = {
enable = true;
startInBackground = true;
};
2022-01-31 13:06:18 +01:00
services.network-manager-applet.enable = true;
2022-01-28 15:11:30 +01:00
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
"autoconnect" = [ "qemu:///system" ];
"uris" = [ "qemu:///system" ];
};
};
home.stateVersion = "21.11";
}