remake dir structure for home-manager
This commit is contained in:
parent
9415d40508
commit
3151b79560
26 changed files with 9 additions and 9 deletions
17
home/features/cli/default.nix
Normal file
17
home/features/cli/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Configures programs that primarily run via the command line
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./fish.nix # fish shell configuration
|
||||
./neovim.nix # neovim configuration, my "escape" editor
|
||||
./lazygit.nix # my preferred git porcellain
|
||||
./direnv.nix # smart cding
|
||||
./mise.nix # version management for tools
|
||||
];
|
||||
|
||||
# stuff that doesn't fit into any other files
|
||||
home.packages = with pkgs; [
|
||||
comma # nix-shell a package by prefixing it with `,`
|
||||
ripgrep # well, it's grep
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue