Compare commits

..

3 Commits

Author SHA1 Message Date
8abb5c3b6e Nicer starship config. 2024-03-17 13:54:36 +01:00
85de1ffbdb Add neofetch 2024-03-17 13:54:23 +01:00
d5a23e0fbe Use breeze theme. 2024-03-17 13:54:13 +01:00
3 changed files with 20 additions and 4 deletions

View File

@ -41,6 +41,7 @@
rclone # Best sync client in the world rclone # Best sync client in the world
age # Simple file encryption age # Simple file encryption
nitch # Simple system info nitch # Simple system info
neofetch # Neo
libarchive # bsdtar libarchive # bsdtar
imagemagick # image tools imagemagick # image tools
ffmpeg # video manupilation ffmpeg # video manupilation

View File

@ -1,4 +1,4 @@
{ inputs, config, ... }: { { inputs, config, pkgs, ... }: {
# But we all know I love zsh # But we all know I love zsh
programs.zsh = { programs.zsh = {
enable = true; enable = true;
@ -64,9 +64,25 @@
}; };
# Starhip settings # Starhip settings
programs.starship = { programs.starship = let flavour = "frappe";
in {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
settings = {
palette = "catppuccin_${flavour}";
add_newline = false;
} // builtins.fromTOML (builtins.readFile (pkgs.fetchFromGitHub {
owner = "starship";
repo = "starship";
rev = "698572aa575508a4bdd0d3092c97f5a056dc50eb";
hash = "sha256-jrtlK4vN8u2UhKeo5+9IyCVYJxkySh+JKhSCUsnQWAg=";
} + /docs/public/presets/toml/pure-preset.toml)) // builtins.fromTOML
(builtins.readFile (pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "starship";
rev = "5629d2356f62a9f2f8efad3ff37476c19969bd4f";
hash = "sha256-nsRuxQFKbQkyEI4TXgvAjcroVdG+heKX5Pauq/4Ota0=";
} + /palettes/${flavour}.toml));
}; };
# Fzf settings # Fzf settings

View File

@ -78,7 +78,7 @@
services.xserver.displayManager.sddm = { services.xserver.displayManager.sddm = {
enable = true; enable = true;
wayland.enable = true; wayland.enable = true;
theme = "catppuccin-frappe"; theme = "breeze";
# Fix keyboard showing up unnecesarilly # Fix keyboard showing up unnecesarilly
settings = { General = { InputMethod = ""; }; }; settings = { General = { InputMethod = ""; }; };
}; };
@ -267,5 +267,4 @@
# DO NOT CHANGE # DO NOT CHANGE
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }