Complete overhaul

This commit is contained in:
SebastianStork 2024-03-12 21:10:35 +01:00
commit d30d11566d
38 changed files with 1373 additions and 0 deletions

73
users/seb/home.nix Normal file
View file

@ -0,0 +1,73 @@
{pkgs, ...}: {
myConfig = {
qtile.enable = true;
vscode.enable = true;
shell = {
bash.enable = true;
starship.enable = true;
nixAliases.enable = true;
improvedCommands.enable = true;
direnv.enable = true;
};
theming.enable = true;
ssh-client.enable = true;
git.enable = true;
};
programs.kitty = {
enable = true;
settings = {
font_family = "JetBrainsMono Nerd Font";
confirm_os_window_close = 0;
background_opacity = "0.7";
scrollback_lines = 10000;
enable_audio_bell = false;
update_check_interval = 0;
};
};
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
};
services.clipmenu = {
enable = true;
launcher = "rofi";
};
home.packages = with pkgs; [
# CLI
fastfetch
btop
# GUI
notepadqq
brave
spotify
cinnamon.nemo-with-extensions
discord
flameshot
jetbrains.idea-community
vlc
obs-studio
libsForQt5.kdenlive
gimp
libreoffice
hunspell
hunspellDicts.de_DE
hunspellDicts.en_US
steam
networkmanagerapplet
# Fonts
(nerdfonts.override {fonts = ["JetBrainsMono"];})
corefonts
roboto
open-sans
ubuntu_font_family
];
}