Simplify Blender import, remove Rot8, standardize fastfetch import, add Teams (ew), split up environment vars, etc
This commit is contained in:
parent
19a6abfbb6
commit
d4ca164ed3
23 changed files with 68 additions and 53 deletions
|
@ -1,7 +1,8 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [ ./small ];
|
||||
|
||||
programs.fastfetch.enable = true;
|
||||
xdg.configFile."fastfetch/config.jsonc".source = ./config.jsonc;
|
||||
|
||||
home.packages = with pkgs; [ (writeScriptBin "smallfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
|
||||
|
||||
xdg.configFile."fastfetch".source = ./configs;
|
||||
}
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [ (writeScriptBin "smallfetch" "fastfetch --config ~/.config/fastfetch/small.jsonc") ];
|
||||
xdg.configFile."fastfetch/small.jsonc".source = ./small.jsonc;
|
||||
}
|
|
@ -2,5 +2,8 @@
|
|||
{
|
||||
programs.zoxide.enable = true;
|
||||
|
||||
home.persistence."/persist${config.home.homeDirectory}".directories = [ ".local/share/zoxide" ];
|
||||
home = {
|
||||
shellAliases.cd = "z";
|
||||
persistence."/persist${config.home.homeDirectory}".directories = [ ".local/share/zoxide" ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue