Initial commit
This commit is contained in:
24
home/apps/fish.nix
Normal file
24
home/apps/fish.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{
|
||||
lib, config, pkgs, ...
|
||||
}: let
|
||||
cfg = config.fish;
|
||||
in {
|
||||
imports = [
|
||||
./shell_common.nix
|
||||
];
|
||||
|
||||
options.fish = {};
|
||||
|
||||
config = {
|
||||
home.packages = [
|
||||
pkgs.fish
|
||||
];
|
||||
home.file = {
|
||||
".config/fish" = {
|
||||
source = ./fish;
|
||||
# Fish creates it's config directory if there is none
|
||||
force = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user