Compare commits
3 Commits
69d13d90b5
...
8abb5c3b6e
Author | SHA1 | Date | |
---|---|---|---|
8abb5c3b6e | |||
85de1ffbdb | |||
d5a23e0fbe |
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user