This commit is contained in:
BalrajSinghGidda
2026-03-21 21:22:19 +05:30
parent fbcf2a598d
commit 8a155ae94c
3 changed files with 19 additions and 2 deletions

View File

@@ -20,7 +20,7 @@
};
# Flake outputs - what this flake produces
outputs = { self, nixpkgs, home-manager, nix-alien, ... }: {
outputs = { self, nixpkgs, home-manager, nix-alien, nvf, ... }: {
# System configuration for the "nixos-btw" host
nixosConfigurations.nixos-btw = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
@@ -28,7 +28,9 @@
modules = [
# Import host-specific configuration
./hosts/nixos-btw
nvf.nixosModules.default
# Add nix-alien to system packages
({ pkgs, ... }: {
environment.systemPackages = [

View File

@@ -9,6 +9,7 @@
# Program-specific configurations
./programs/gemini-cli.nix # Gemini AI CLI
./programs/nvf.nix # Neovim
./programs/nix-alien.nix # Nix-Alien Package
# Core configurations

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
programs.nvf = {
enable = true;
settings = {
vim.viAlias = true;
vim.vimAlias = false;
vim.lsp = {
enable = true;
};
};
};
}