refactoring

This commit is contained in:
Matt Nish-Lapidus 2025-03-21 15:51:46 -04:00
parent cd146650b7
commit 3110d3fe47
2 changed files with 10 additions and 4 deletions

View file

@ -4,11 +4,11 @@
imports = with nix-config.homeModules; [ imports = with nix-config.homeModules; [
shell-conf # shell, shell utils, cli tools, libs, tui's shell-conf # shell, shell utils, cli tools, libs, tui's
git-conf git-conf
beets
]; ];
home = { home = {
packages = with pkgs; [ packages = with pkgs; [
beets
btop btop
]; ];
@ -19,7 +19,6 @@
NH_FLAKE = "\${HOME}/nixos-config"; NH_FLAKE = "\${HOME}/nixos-config";
}; };
sessionPath = [ sessionPath = [
"/home/media/.local/bin" "/home/media/.local/bin"
"/home/media/.local/share" "/home/media/.local/share"
@ -42,8 +41,6 @@
startServices = "sd-switch"; # auto reload services when home is rebuilt startServices = "sd-switch"; # auto reload services when home is rebuilt
}; };
xdg.configFile."beets/config.yaml".source = ../../modules/home/beets/config.yaml;
#custom script executables #custom script executables
home.file.".local/bin" = { home.file.".local/bin" = {
source = ../emenel/dotfiles/dot_local/bin; source = ../emenel/dotfiles/dot_local/bin;

View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
beets
];
xdg.configFile."beets/config.yaml".source = ./config.yaml;
}