change packages of gunther

This commit is contained in:
Leon Vatthauer 2024-12-10 15:28:34 +01:00
parent 4da90f3086
commit b7ffa5e305
Signed by: leonv
SSH key fingerprint: SHA256:G4+ddwoZmhLPRB1agvXzZMXIzkVJ36dUYZXf5NxT+u8
3 changed files with 38 additions and 73 deletions

View file

@ -19,11 +19,6 @@
}; };
}; };
# TODO remove once logseq is fixed
nixpkgs.config.permittedInsecurePackages = [
"electron-27.3.11"
];
services.emacs.package = pkgs.emacs29-pgtk; services.emacs.package = pkgs.emacs29-pgtk;
services.emacs.enable = true; services.emacs.enable = true;
@ -133,14 +128,6 @@
# List packages installed in system profile. # List packages installed in system profile.
environment.systemPackages = environment.systemPackages =
with pkgs; with pkgs;
# let
# catp-gtk = pkgs.catppuccin-gtk.override {
# accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes
# size = "compact";
# tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here
# variant = "macchiato";
# };
# in
[ [
# for connecting to nas # for connecting to nas
nfs-utils nfs-utils
@ -154,7 +141,6 @@
# greeter # greeter
greetd.gtkgreet greetd.gtkgreet
# catp-gtk
# deps for hyprland / eww # deps for hyprland / eww
socat socat
@ -168,28 +154,23 @@
programs.zsh.enable = true; programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh; users.defaultUserShell = pkgs.zsh;
# # Binary Cache for Haskell.nix
# nix.settings.trusted-public-keys = [
# "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ="
# ];
nix.settings.substituters = [ nix.settings.substituters = [
"https://aseipp-nix-cache.freetls.fastly.net" "https://aseipp-nix-cache.freetls.fastly.net"
# "https://aseipp-nix-cache.global.ssl.fastly.net"
# "https://cache.iog.io"
]; ];
# environment variables # environment variables
environment.sessionVariables = { environment.sessionVariables = {
## disable logging when direnv changes ## disable logging when direnv changes
DIRENV_LOG_FORMAT = []; DIRENV_LOG_FORMAT = [];
# GTK theme (set here for greetd)
# GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
}; };
# fonts # fonts
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
((nerdfonts.override { fonts = [ "Hack" "DejaVuSansMono" "DroidSansMono" "Noto" ]; })) nerd-fonts.hack
nerd-fonts.dejavu-sans-mono
nerd-fonts.droid-sans-mono
nerd-fonts.noto
mononoki mononoki
# noto-fonts # noto-fonts
noto-fonts-cjk-sans noto-fonts-cjk-sans
@ -222,8 +203,6 @@
User hy84coky User hy84coky
''; '';
programs.steam.enable = true;
# thunar # thunar
programs.thunar = { programs.thunar = {
enable = true; enable = true;

View file

@ -118,6 +118,7 @@
]; ];
exec-once = [ exec-once = [
"bash ~/Git/nixos/gunther/hypr/start.sh" "bash ~/Git/nixos/gunther/hypr/start.sh"
"dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP"
]; ];
}; };
}; };

View file

@ -20,13 +20,6 @@
variant = "macchiato"; variant = "macchiato";
}) })
#nextcloud-client
#ausweisapp
#godot_4
#dotnet-runtime
#blender
#aseprite
# smt solver for liquid haskell # smt solver for liquid haskell
z3 z3
@ -40,13 +33,14 @@
cpplint cpplint
# stuff # stuff
swi-prolog
jq jq
vlc vlc
openvpn openvpn
signal-desktop signal-desktop
webcord discord-canary
firefox-wayland firefox-wayland
ungoogled-chromium google-chrome
thunderbird thunderbird
gimp gimp
qpdfview qpdfview
@ -71,14 +65,10 @@
haskell-language-server haskell-language-server
python3 python3
python3Packages.pygments python3Packages.pygments
nodejs_20
unifont unifont
anki anki
pandoc pandoc
# games
prismlauncher
# hyprland # hyprland
kitty kitty
networkmanagerapplet networkmanagerapplet
@ -141,29 +131,29 @@
oh-my-zsh.enable = true; oh-my-zsh.enable = true;
}; };
# gtk = { gtk = {
# enable = true; enable = true;
# theme = { theme = {
# name = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; name = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
# package = pkgs.catppuccin-gtk.override { package = pkgs.catppuccin-gtk.override {
# accents = [ "flamingo" ]; accents = [ "flamingo" ];
# size = "compact"; size = "compact";
# tweaks = [ "rimless" "black" ]; tweaks = [ "rimless" "black" ];
# variant = "macchiato"; variant = "macchiato";
# }; };
# }; };
# iconTheme = { iconTheme = {
# name = "Dracula"; name = "Dracula";
# package = pkgs.dracula-icon-theme; package = pkgs.dracula-icon-theme;
# }; };
# font = { font = {
# name = "NotoSans Nerd Font"; name = "NotoSans Nerd Font";
# }; };
# gtk3 = { gtk3 = {
# extraConfig.gtk-application-prefer-dark-theme = true; extraConfig.gtk-application-prefer-dark-theme = true;
# }; };
# }; };
# home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
home.sessionPath = [ "$HOME/.config/emacs/bin" ]; home.sessionPath = [ "$HOME/.config/emacs/bin" ];
home.pointerCursor = { home.pointerCursor = {
@ -173,10 +163,6 @@
size = 24; size = 24;
}; };
services.syncthing = {
enable = true;
};
programs.tofi = { programs.tofi = {
enable = true; enable = true;
settings = { settings = {
@ -193,14 +179,13 @@
}; };
}; };
dconf.settings = {
# dconf.settings = { # GTK4 Setup
# # GTK4 Setup "org/gnome/desktop/interface" = {
# "org/gnome/desktop/interface" = { gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
# gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; color-scheme = "prefer-dark";
# color-scheme = "prefer-dark"; };
# }; };
# };
services.mpris-proxy.enable = true; services.mpris-proxy.enable = true;
} }