Added k9s

This commit is contained in:
fwastring 2025-09-04 11:05:21 +02:00
parent d7bd96d68d
commit 1fc6785205
7 changed files with 36 additions and 13 deletions

10
shared/k9s.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, inputs, pkgs, ... }:
let
in
{
programs.k9s.enable = true;
xdg.configFile."k9s".source = inputs.k9s-config;
}

View file

@ -10,7 +10,7 @@
font =
{
name = "ComicShannsMono Nerd Font";
size = 22;
size = 12;
};
shellIntegration = {
mode = "no-cursor";

View file

@ -1,22 +1,13 @@
{ config, pkgs, ... }:
{ config, inputs, pkgs, ... }:
let
# Replace with the URL of your Neovim configuration GitHub repository
nvim-config = {
url = "github:fwastring/nvim?exportIgnore=1";
# Use a specific, locked commit hash here
# You can get this by running 'nix flake lock'
# after adding the input
flake = false; # Tell Nix this is not a flake
};
in
{
# Enable the Home Manager Neovim module if you haven't already
# programs.neovim.enable = true;
# Create a symlink from the Nix store to the Neovim config directory
xdg.configFile."nvim".source = nvim-config;
xdg.configFile."nvim".source = inputs.nvim-config;
# Other Home Manager options...
}