refactor home/tiling
refactor home/terminal refactor home/apps refactor home/services refactor home/games
This commit is contained in:
parent
8c43814c4e
commit
52f48ab978
31 changed files with 39 additions and 21 deletions
8
home/terminal/default.nix
Normal file
8
home/terminal/default.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
imports = [
|
||||
./btop.nix
|
||||
./fish.nix
|
||||
./kitty.nix
|
||||
./neovim.nix
|
||||
];
|
||||
}
|
||||
|
|
@ -25,19 +25,19 @@
|
|||
functions = {
|
||||
fish_prompt = {
|
||||
description = "Write out the prompt";
|
||||
body = builtins.readFile ./functions/fish-prompt.fish;
|
||||
body = builtins.readFile ./fish_functions/fish-prompt.fish;
|
||||
};
|
||||
kitty-ssh = {
|
||||
description = "Integrate Kitten SSH with Fish";
|
||||
body = builtins.readFile ./functions/kitty-ssh.fish;
|
||||
body = builtins.readFile ./fish_functions/kitty-ssh.fish;
|
||||
};
|
||||
nix-shell = {
|
||||
description = "Wrapper for nix-shell that runs fish by default";
|
||||
body = builtins.readFile ./functions/nix-shell.fish;
|
||||
body = builtins.readFile ./fish_functions/nix-shell.fish;
|
||||
};
|
||||
logout = {
|
||||
description = "Log out of KDE Plasma";
|
||||
body = builtins.readFile ./functions/logout.fish;
|
||||
body = builtins.readFile ./fish_functions/logout.fish;
|
||||
};
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue