update
This commit is contained in:
+28
-6
@@ -1,9 +1,10 @@
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, inputs, ... }:
|
||||
let
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./mpd.nix
|
||||
inputs.dms.homeModules.dank-material-shell
|
||||
];
|
||||
|
||||
home.username = "user";
|
||||
@@ -18,8 +19,20 @@ in
|
||||
programs.fzf.enable = true;
|
||||
programs.fzf.enableFishIntegration = true;
|
||||
|
||||
programs.eza.enable = true;
|
||||
programs.eza.enableFishIntegration = true;
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
git = true;
|
||||
extraOptions = [
|
||||
"-a"
|
||||
"--long"
|
||||
"--no-time"
|
||||
"--no-user"
|
||||
"--no-permissions"
|
||||
"--no-filesize"
|
||||
"--icons=always"
|
||||
];
|
||||
};
|
||||
|
||||
services.cliphist.enable = true;
|
||||
|
||||
@@ -46,12 +59,22 @@ in
|
||||
programs.fastfetch.enable = true;
|
||||
|
||||
programs.rbw.enable = true;
|
||||
programs.rbw.settings = {
|
||||
pinentry = pkgs.pinentry-curses;
|
||||
email = "KeksNino@proton.me";
|
||||
base_url = "https://vw.pizzasucht.net";
|
||||
};
|
||||
|
||||
programs.prismlauncher.enable = true;
|
||||
|
||||
programs.dank-material-shell.enable = true;
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
nitch
|
||||
|
||||
set -gx EDITOR nvim
|
||||
set -g fish_key_bindings fish_hybrid_key_bindings
|
||||
'';
|
||||
};
|
||||
|
||||
@@ -62,7 +85,6 @@ in
|
||||
ff = "fastfetch";
|
||||
grep = "grep -i";
|
||||
hyprland = "start-hyprland";
|
||||
ls = "ls --color=tty";
|
||||
mv = "mv -v";
|
||||
n = "nvim";
|
||||
py = "uv run";
|
||||
@@ -83,7 +105,7 @@ in
|
||||
enable = true;
|
||||
theme = {
|
||||
name = "Materia-dark-compact";
|
||||
package = pkgs.gnome-themes-extra;
|
||||
package = pkgs.materia-theme-transparent;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user