nix/config/home.nix
2024-07-16 18:05:48 +02:00

206 lines
3 KiB
Nix

# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
{
inputs,
lib,
config,
pkgs,
myhostname,
...
}: {
imports = [
../shared/dwm.nix
../shared/dmenu.nix
../shared/kitty.nix
../shared/tmux.nix
../shared/vim.nix
../shared/fish.nix
../shared/git.nix
../shared/nixpkgs.nix
../shared/firefox.nix
../shared/zathura.nix
../shared/lazygit.nix
../shared/spotifyd.nix
../shared/ssh.nix
../shared/aerc.nix
../shared/rbw.nix
../shared/oh-my-posh.nix
];
nixpkgs = {
overlays = [];
config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
permittedInsecurePackages = [
"electron-25.9.0"
"electron-19.1.9"
"nix-2.16.2"
];
};
};
home.packages = with pkgs; [
# System
arion
wget
alsa-utils
killall
upower
mpv
gcc
gnumake
htop
openssh
xsel
unzip
zip
imagemagick
ghostscript
killall
cmake
feh
brightnessctl
scrot
dunst
xbanish
networkmanager
pavucontrol
fd
bat
steam-run
appimage-run
bluez
bluez-tools
grc
xorg.xmodmap
playerctl
openssl
libsecret
#Terminal
sc-im
gnuplot
bison
tesseract
qrencode
texliveMedium
vdirsyncer
todoman
calcure
python311Packages.urwid
signal-cli
scli
sysz
betterlockscreen
pyradio
haskellPackages.patat
gh
git
tmux
zathura
yt-dlp
fzf
ripgrep
fw-pkgs.spotify-player
alsa-lib
libdbusmenu
xorg.libxcb
speedcrunch
eza
btop
poppler_utils
pandoc
glow
rustup
openssl
pkg-config
azure-cli
azuredatastudio
adrs
opentofu
kubernetes
lazydocker
#Desktop
libreoffice-qt6-fresh
aerc
firefox
chromium
vial
thunderbird
spotify
signal-desktop
darktable
discord
discordo
slack
kitty
neovim
fastfetch
obsidian
lazygit
betterdiscordctl
pdfarranger
byzanz
drawio
xdotool
pinentry
remmina
rofi
rbw
rofi-rbw
teams-for-linux
#Dev
python3
python311Packages.pip
ranger
python311Packages.pynvim
ueberzugpp
go
gopls
#LSP
zig
zls
nil
python311Packages.python-lsp-server
marksman
clojure-lsp
omnisharp-roslyn
haskell-language-server
java-language-server
nodePackages_latest.bash-language-server
dockerfile-language-server-nodejs
yaml-language-server
ansible-language-server
lua-language-server
tree-sitter
nodejs_22
nodePackages_latest.vls
nodePackages_latest.volar
vscode-langservers-extracted
#VPN
openvpn
networkmanagerapplet
networkmanager-l2tp
strongswan
ansible
];
programs.home-manager.enable = true;
programs.fish.enable = true;
xsession.enable = true;
xsession.windowManager.command = if myhostname == "laptop" then "/home/fw/nix/.xinitrc.laptop" else "/home/fw/nix/.xinitrc";
home.username = "fw";
home.homeDirectory = "/home/fw";
home.stateVersion = "23.11"; # Did you read the comment?
systemd.user.startServices = "sd-switch";
}