Pass inputs around instead of each individual input

This commit is contained in:
Gene Liverman 2024-12-04 21:39:03 -05:00
parent e1d4cddda0
commit eead479245
25 changed files with 27 additions and 29 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, genebean-omp-themes, ... }: let
{ inputs, pkgs, ... }: let
sqlite_lib = if builtins.elem pkgs.system [
"aarch64-darwin"
"x86_64-darwin"
@ -159,7 +159,7 @@ in {
oh-my-posh = {
enable = true;
enableZshIntegration = true;
settings = builtins.fromJSON (builtins.unsafeDiscardStringContext (builtins.readFile (genebean-omp-themes + "/beanbag.omp.json")));
settings = builtins.fromJSON (builtins.unsafeDiscardStringContext (builtins.readFile (inputs.genebean-omp-themes + "/beanbag.omp.json")));
};
ripgrep.enable = true;
tmux = {

View file

@ -1,4 +1,4 @@
{ pkgs, genebean-omp-themes, ... }: {
{ pkgs, ... }: {
home.packages = with pkgs; [
# nothing here right now
];

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{ ... }: {
home.file = {
".config/xfce4/terminal/accels.scm".source = ../../files/xfce4/terminal/accels.scm;
};