refactoring
This commit is contained in:
parent
cd146650b7
commit
3110d3fe47
2 changed files with 10 additions and 4 deletions
|
@ -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;
|
||||||
|
|
9
modules/home/beets/default.nix
Normal file
9
modules/home/beets/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
beets
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.configFile."beets/config.yaml".source = ./config.yaml;
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue