Simplification of home manager basic module
This commit is contained in:
parent
67100d56d5
commit
eea02abfcb
13 changed files with 77 additions and 70 deletions
25
modules/hm/combined/basics.nix
Normal file
25
modules/hm/combined/basics.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./minimal.nix
|
||||
|
||||
../direnv.nix
|
||||
../fzf.nix
|
||||
../info.nix
|
||||
../man.nix
|
||||
../starship.nix
|
||||
../tmux.nix
|
||||
../yazi.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
language.base = "it_IT.UTF-8";
|
||||
packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
fastfetch
|
||||
pv
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue