nixos/gunther/leonv.nix

141 lines
2.6 KiB
Nix
Raw Normal View History

2024-02-16 13:59:46 +01:00
{ config, pkgs, inputs, ... }:
{
imports = [
./../common
./hypr/hyprland.nix
./../common/eww
];
/* The home.stateVersion option does not have a default and must be set */
2024-02-25 21:03:35 +01:00
home.stateVersion = "24.05";
2024-02-16 13:59:46 +01:00
home.username = "leonv";
home.homeDirectory = "/home/leonv";
home.packages = with pkgs; [
# theme for gtk applications
orchis-theme
# stuff
2024-03-20 16:12:45 +01:00
tidal-hifi
2024-02-16 13:59:46 +01:00
jq
vlc
openvpn
signal-desktop
webcord
firefox-wayland
ungoogled-chromium
thunderbird
gimp
qpdfview
wget
fontforge
gparted
eza
ripgrep
fd
zoom-us
# development
jetbrains.idea-ultimate
gnumake
texlive.combined.scheme-full
ltex-ls
ghostscript
jdk11
coq
gcc
ghc
cabal-install
haskell-language-server
python3
python3Packages.pygments
nodejs_20
unifont
anki
pandoc
# games
prismlauncher
# hyprland
kitty
networkmanagerapplet
mako
libnotify
pavucontrol
hyprpaper
qimgv
playerctl
hyprpicker
wev
inputs.hyprland-contrib.packages.${pkgs.system}.grimblast
bluez
htop
archiver
gnome.file-roller
discord
zip
emacs
shellcheck
# yubikey
yubico-pam
yubikey-manager
# agda
(agda.withPackages [
agdaPackages.standard-library
agdaPackages.agda-categories
])
2024-03-20 16:12:45 +01:00
lean4
2024-02-16 13:59:46 +01:00
];
programs.home-manager.enable = true;
programs.zsh = {
enable = true;
shellAliases = {
clean = "sudo nix-env --delete-generations old --profile /nix/var/nix/profiles/system && sudo /nix/var/nix/profiles/system/bin/switch-to-configuration switch && sudo nix-store --gc";
ls = "eza";
ll = "eza -l";
l = "eza -lah";
2024-02-25 21:03:35 +01:00
code = "codium";
2024-02-16 13:59:46 +01:00
};
initExtra = ''
function rebuild () {
sudo nixos-rebuild switch --flake /home/leonv/Git/nixos
sudo cp -r /home/leonv/Git/nixos /etc/
}
'';
oh-my-zsh.enable = true;
};
gtk = {
enable = true;
theme = {
name = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "flamingo" ];
size = "compact";
tweaks = [ "rimless" "black" ];
variant = "macchiato";
};
};
iconTheme = {
name = "Dracula";
package = pkgs.dracula-icon-theme;
};
font = {
name = "NotoSans Nerd Font";
};
};
home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
home.sessionPath = [ "$HOME/.config/emacs/bin" ];
services.syncthing = {
enable = true;
};
services.mpris-proxy.enable = true;
}