Merge branch 'main' of github.com:bloxx12/nichts

This commit is contained in:
LarsZauberer 2024-04-25 08:28:40 +02:00
commit c56ef6a50d
7 changed files with 91 additions and 105 deletions

View file

@ -23,6 +23,8 @@
security.sudo.package = pkgs.sudo.override { withInsults = true; };
security.polkit.enable = true;
programs.kdeconnect.enable = true;
programs.neovim.defaultEditor = true;
programs.adb.enable = true;
services.mpd = {
enable = true;
musicDirectory = "/home/vali/Nextcloud/Media/Music/";
@ -34,12 +36,7 @@
}
'';
};
/* options.ui.darkTheme = {
type = lib.types.bool;
default = true;
example = false;
description = "If ui programs should use a dark or light theme";
};*/
modules = {
other = {
system = {
@ -59,11 +56,10 @@
mpv.enable = true;
kitty.enable = true;
dwm.enable = true;
schizofox.enable = true;
newsboat.enable = true;
#git = {
# enable = true;
# userName = "vali";
# userEmail = "valentin@kaas.cc";
# userName = "vali"; userEmail = "valentin@kaas.cc";
# defaultBranch = "main";
#};
starship.enable = true;
@ -84,21 +80,17 @@
};
gtk = {
enable = false;
package = pkgs.catppuccin-gtk;
name = "Catppuccin-Mocha-Standard-Green-Dark";
variant = "mocha";
accentColour = "green";
package = pkgs.gruvbox-gtk-theme;
name = "Gruvbox-Dark-BL";
iconTheme = {
name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders;
# name = "Papirus-Dark";
# package = pkgs.catppuccin-papirus-folders;
};
};
qt = {
enable = true;
package = pkgs.catppuccin-kde;
name = "Catppuccin-Mocha-Dark";
variant = "mocha";
accentColour = "green";
package = pkgs.kde-gruvbox;
name = "Gruvbox";
};
};
};

View file

@ -7,7 +7,6 @@ in {
alacritty
alsa-utils
asciinema
# betterbird
bibata-cursors
blanket
dig
@ -47,7 +46,7 @@ in {
neovim
networkmanagerapplet
nextcloud-client
nheko
nicotine-plus
pamixer
pavucontrol
pcmanfm
@ -56,6 +55,7 @@ in {
playerctl
polkit
python3
python311Packages.pygame
qbittorrent
ripgrep
rustdesk
@ -65,7 +65,6 @@ in {
signal-desktop-beta
smartmontools
spotube
steam
strawberry
telegram-desktop
texliveFull
@ -74,11 +73,12 @@ in {
trash-cli
tree
unzip
util-linux
ventoy-full
vesktop
vlc
weechat
wget
wireguard-tools
xclip
xfce.thunar
xorg.libX11.dev

View file

@ -1,78 +0,0 @@
{ config, inputs, pkgs, ... }:
let
username = config.myOptions.other.system.username;
in {
home-manager.users.${username} = {
home.packages = let
fenix = inputs.fenix.packages.${pkgs.system};
in with pkgs; [
alacritty
alsa-utils
asciinema
betterbird
bibata-cursors
dig
easyeffects
element-desktop
eza
fastfetch
(fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
ffmpeg_6-full
flameshot
foot
gcc
gdb
grimblast
git
httpie
imagemagick
keepassxc
krita
lazygit
libreoffice-fresh
neofetch
neovim
networkmanagerapplet
nextcloud-client
pamixer
pavucontrol
pcmanfm
pfetch
playerctl
polkit
python3
qbittorrent
ripgrep
rustdesk
rofi
scc
sherlock
signal-desktop-beta
smartmontools
st
steam
strawberry.strawberry-wrapped
telegram-desktop
texliveFull
thunderbird
tor-browser-bundle-bin
trash-cli
tree
unzip
ventoy-full
vesktop
vlc
xclip
yt-dlp
zathura
zip
];
};
}