File cleanup reverted

This commit is contained in:
Zonsopkomst 2024-03-20 21:00:23 -05:00
parent af639c3975
commit 66429dbc53
3 changed files with 11 additions and 11 deletions

View File

@ -284,7 +284,7 @@
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.zonsopkomst = import ./hosts/local/weda/home.nix; home-manager.users.zonsopkomst = import ./hosts/local/weda/home.nix;
#home-manager.extraSpecialArgs = {inherit inputs;}; home-manager.extraSpecialArgs = {inherit inputs;};
} }
nix-flatpak.nixosModules.nix-flatpak{ nix-flatpak.nixosModules.nix-flatpak{

View File

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { config, pkgs, inputs, ... }:
{ {
# Home Manager needs a bit of information about you and the # Home Manager needs a bit of information about you and the
@ -6,6 +6,10 @@
home.username = "zonsopkomst"; home.username = "zonsopkomst";
home.homeDirectory = "/home/zonsopkomst"; home.homeDirectory = "/home/zonsopkomst";
home.packages = [
inputs.gnucashpkgs.legacyPackages.x86_64-linux.gnucash
];
# This value determines the Home Manager release that your # This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage # configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards # when a new Home Manager release introduces backwards

View File

@ -1,11 +1,11 @@
{ config, pkgs, inputs, ... }: { config, pkgs, ... }:
{ {
home-manager.users.zonsopkomst = { pkgs, inputs, ... }: { home-manager.users.zonsopkomst = { pkgs, ... }: {
# 03/12/2024 Gnucash Attempt: # 03/12/2024 Gnucash Attempt:
extraSpecialArgs = {inherit inputs;}; #extraSpecialArgs = {inherit gnucashpkgs;};
home.packages = (with pkgs; [ home.packages = with pkgs; [
armcord # Discord Client armcord # Discord Client
#betterbird # Betterbird Email Client #betterbird # Betterbird Email Client
bleachbit # PC Cleaner bleachbit # PC Cleaner
@ -62,11 +62,7 @@
xiphos # Bible Study Tool xiphos # Bible Study Tool
xournalpp # PDF Annotation xournalpp # PDF Annotation
zathura # PDF Viewer zathura # PDF Viewer
]) ++ ];
( with inputs; [gnucashpkgs.legacyPackages.x86_64-linux.gnucash]);
imports = [ imports = [
../../config/config.nix ../../config/config.nix