update
This commit is contained in:
+25
-16
@@ -1,10 +1,13 @@
|
||||
{ pkgs, inputs, config, ... }:
|
||||
let
|
||||
in
|
||||
{
|
||||
pkgs,
|
||||
dms,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
./mpd.nix
|
||||
inputs.dms.homeModules.dank-material-shell
|
||||
dms.homeModules.dank-material-shell
|
||||
];
|
||||
|
||||
home.username = "user";
|
||||
@@ -44,25 +47,25 @@ in
|
||||
];
|
||||
};
|
||||
|
||||
services.cliphist.enable = true;
|
||||
|
||||
programs.pywal.enable = true;
|
||||
programs.pywal.package = pkgs.pywal16;
|
||||
programs.pywal = {
|
||||
enable = true;
|
||||
package = pkgs.pywal16;
|
||||
};
|
||||
|
||||
programs.lazygit.enable = true;
|
||||
programs.lazygit.enableFishIntegration = true;
|
||||
|
||||
programs.rbw.enable = true;
|
||||
programs.rbw.settings = {
|
||||
enable = true;
|
||||
pinentry = pkgs.pinentry-curses;
|
||||
email = "KeksNino@proton.me";
|
||||
base_url = "https://vw.pizzasucht.net";
|
||||
};
|
||||
|
||||
|
||||
programs.distrobox.enable = true;
|
||||
services.podman.enable = true;
|
||||
|
||||
services.cliphist.enable = true;
|
||||
programs.btop.enable = true;
|
||||
services.udiskie.enable = true;
|
||||
programs.cava.enable = true;
|
||||
@@ -80,14 +83,20 @@ in
|
||||
programs.obsidian.enable = true;
|
||||
programs.gcc.enable = true;
|
||||
|
||||
home.sessionPath = [
|
||||
"${config.home.homeDirectory}/.local/bin"
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
nitch
|
||||
set -gx EDITOR nvim
|
||||
set -gx PATH $PATH /home/user/.local/bin
|
||||
set -g fish_key_bindings fish_hybrid_key_bindings
|
||||
set fish_greeting
|
||||
nitch
|
||||
set -g fish_key_bindings fish_hybrid_key_bindings
|
||||
set fish_greeting
|
||||
'';
|
||||
};
|
||||
|
||||
@@ -104,9 +113,9 @@ in
|
||||
r = "rsync -avh --info=progress2";
|
||||
rm = "trash";
|
||||
ssh = "kitty +kitten ssh";
|
||||
nd = "nix develop";
|
||||
};
|
||||
|
||||
|
||||
programs.zoxide.enable = true;
|
||||
programs.zoxide.enableFishIntegration = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user