setting up media server
This commit is contained in:
parent
6792649772
commit
bc344e265e
4 changed files with 50 additions and 44 deletions
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
|
||||
imports = with nix-config.homeModules; [
|
||||
# mako
|
||||
git-conf
|
||||
yazi
|
||||
shell-conf # shell, shell utils, cli tools, libs, tui's
|
||||
email
|
||||
|
@ -21,7 +21,7 @@
|
|||
]
|
||||
|
||||
(with pkgs; [
|
||||
# samba4Full
|
||||
# sambaFull
|
||||
dconf
|
||||
# xorg.libX11
|
||||
# xorg.libxcb
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
imports = with nix-config.homeModules; [
|
||||
shell-conf # shell, shell utils, cli tools, libs, tui's
|
||||
git-conf
|
||||
];
|
||||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
cifs-utils
|
||||
beets
|
||||
keyutils
|
||||
wezterm
|
||||
];
|
||||
|
||||
|
@ -26,47 +26,7 @@
|
|||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
|
||||
password-store.enable = true;
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
lfs = {
|
||||
enable = true;
|
||||
};
|
||||
userEmail = "matt@emenel.ca";
|
||||
userName = "Matt Nish-Lapidus";
|
||||
ignores = [
|
||||
".DS_Store"
|
||||
];
|
||||
extraConfig = {
|
||||
core = {
|
||||
editor = "$EDITOR";
|
||||
pager = "${pkgs.delta}/bin/delta";
|
||||
};
|
||||
interactive = {
|
||||
diffFilter = "${pkgs.delta}/bin/delta --color-only";
|
||||
};
|
||||
delta = {
|
||||
navigate = true;
|
||||
dark = true;
|
||||
line-numbers = true;
|
||||
side-by-side = true;
|
||||
};
|
||||
merge = {
|
||||
conflictstyle = "zdiff3";
|
||||
};
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
aliases = {
|
||||
co = "checkout";
|
||||
cm = "commit -m";
|
||||
aa = "add .";
|
||||
p = "push";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user = {
|
||||
|
|
|
@ -156,9 +156,13 @@
|
|||
nixarr = {
|
||||
enable = true;
|
||||
|
||||
mediaDir = "/data/media";
|
||||
# mediaDir = "/mnt/filez/media";
|
||||
stateDir = "/data/media/.state/nixarr";
|
||||
|
||||
mediaUsers = [
|
||||
"media"
|
||||
];
|
||||
|
||||
transmission = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
42
modules/home/git-conf.nix
Normal file
42
modules/home/git-conf.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
lfs = {
|
||||
enable = true;
|
||||
};
|
||||
userEmail = "matt@emenel.ca";
|
||||
userName = "Matt Nish-Lapidus";
|
||||
ignores = [
|
||||
".DS_Store"
|
||||
];
|
||||
extraConfig = {
|
||||
core = {
|
||||
editor = "$EDITOR";
|
||||
pager = "${pkgs.delta}/bin/delta";
|
||||
};
|
||||
interactive = {
|
||||
diffFilter = "${pkgs.delta}/bin/delta --color-only";
|
||||
};
|
||||
delta = {
|
||||
navigate = true;
|
||||
dark = true;
|
||||
line-numbers = true;
|
||||
side-by-side = true;
|
||||
};
|
||||
merge = {
|
||||
conflictstyle = "zdiff3";
|
||||
};
|
||||
init = {
|
||||
defaultBranch = "main";
|
||||
};
|
||||
};
|
||||
aliases = {
|
||||
co = "checkout";
|
||||
cm = "commit -m";
|
||||
aa = "add .";
|
||||
p = "push";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue