Reverting

This commit is contained in:
Zonsopkomst 2024-03-20 07:18:22 -05:00
parent dc1d222dc5
commit 28b05d8100
1 changed files with 0 additions and 15 deletions

View File

@ -1,21 +1,6 @@
{ config, pkgs, ... }:
let
# Fetch the specific version of GnuCash
gnucashVersion = "5.4";
gnucashPackage = pkgs.gnucash.overrideAttrs (oldAttrs: {
version = gnucashVersion;
});
in
{
# Other configuration settings...
# Install GnuCash
programs.gnucash = {
enable = true;
package = gnucashPackage;
};
imports = [
];