laptop
This commit is contained in:
parent
d8032cc35d
commit
e945735fa1
61 changed files with 344 additions and 550 deletions
52
home/minimal/default.nix
Normal file
52
home/minimal/default.nix
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.homeDirectory = "/home/${config.home.username}";
|
||||
|
||||
imports = [
|
||||
./fish.nix
|
||||
./vifm.nix
|
||||
./nvim
|
||||
./tmux.nix
|
||||
./git.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
dust
|
||||
eza
|
||||
fastfetch
|
||||
fzf
|
||||
jq
|
||||
nh
|
||||
nix-search
|
||||
progress
|
||||
rename
|
||||
silver-searcher
|
||||
tldr
|
||||
tmux
|
||||
yq
|
||||
];
|
||||
|
||||
home.shellAliases = {
|
||||
cdg = "cd \$(git rev-parse --show-toplevel)";
|
||||
dmy = "date +'%-d.-%-m.%Y'";
|
||||
du = "dust";
|
||||
ls = "eza";
|
||||
tree = "eza --tree";
|
||||
top = "btm --battery";
|
||||
ymd = "date +'%Y-%m-%d'";
|
||||
};
|
||||
|
||||
programs.nix-index = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
|
||||
programs.bottom = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue