Refactored flake.nix; fixed comma

This commit is contained in:
Random936
2025-05-02 13:49:46 -07:00
parent 741e2ab222
commit e0a8ac3e07
3 changed files with 70 additions and 118 deletions

View File

@@ -1,4 +0,0 @@
{ config, pkgs, inputs, ...}: {
imports = [ inputs.nix-index-database.hmModules.nix-index ];
programs.nix-index-database.comma.enable = true;
}

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ pkgs, inputs, ... }: {
home.packages = with pkgs; [
# Nix specific utilities
manix
@@ -9,6 +9,7 @@
# Utilities
jq
bc
duf
file
wget
curl
@@ -36,4 +37,8 @@
enableZshIntegration = true;
nix-direnv.enable = true;
};
# Install comma
imports = [ inputs.nix-index-database.hmModules.nix-index ];
programs.nix-index-database.comma.enable = true;
}