Reimplement home manager files
This commit is contained in:
parent
5f8cbf469b
commit
d333524003
11 changed files with 101 additions and 60 deletions
19
.config/nix/home/core.nix
Normal file
19
.config/nix/home/core.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
raycast
|
||||
ripgrep
|
||||
tree
|
||||
curl
|
||||
less
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
PAGER = "less";
|
||||
CLICOLOR = 1;
|
||||
EDITOR = "emacs";
|
||||
};
|
||||
|
||||
programs.bat.enable = true;
|
||||
programs.git.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue