Some changes

This commit is contained in:
Henry Hiles 2025-02-25 11:53:08 +00:00
parent 53a10e993b
commit f5cec9b929
16 changed files with 134 additions and 46 deletions

View file

@ -3,6 +3,5 @@
pkgs,
...
}: {
programs.command-not-found.dbPath = "/etc/programs.sqlite";
environment.etc."programs.sqlite".source = inputs.programsdb.packages.${pkgs.system}.programs-sqlite;
programs.command-not-found.dbPath = inputs.programsdb.packages.${pkgs.system}.programs-sqlite;
}

View file

@ -6,10 +6,8 @@
neofetch
'';
};
environment = {
# systemPackages = with pkgs.fishPlugins; [
# ];
sessionVariables.fish_greeting = "";
shells = [pkgs.fish];
shellAliases = {
# Utility

View file

@ -2,6 +2,6 @@
users.users.quadradical = {
isNormalUser = true;
description = "QuadRadical";
extraGroups = ["networkmanager" "wheel" "libvirtd"];
extraGroups = ["wheel"];
};
}