mirror of
https://github.com/BalrajSinghGidda/nixos-dotfiles.git
synced 2026-04-07 09:27:23 +00:00
akscoaa
This commit is contained in:
@@ -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 = [
|
||||
|
||||
@@ -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
|
||||
|
||||
14
modules/home-manager/programs/nvf.nix
Normal file
14
modules/home-manager/programs/nvf.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.nvf = {
|
||||
enable = true;
|
||||
settings = {
|
||||
vim.viAlias = true;
|
||||
vim.vimAlias = false;
|
||||
vim.lsp = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user