ok i think everythings normal now
This commit is contained in:
parent
717a65f00c
commit
4a7d7d85be
4 changed files with 1 additions and 34 deletions
|
@ -0,0 +1 @@
|
||||||
|
# TODO do this later
|
|
@ -1,2 +0,0 @@
|
||||||
# TODO(sako):: Make this
|
|
||||||
{}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{ config, pkgs, lib, ...}:
|
|
||||||
{
|
|
||||||
services.mpd = {
|
|
||||||
enable = true;
|
|
||||||
# pipewire fix
|
|
||||||
user = "sako";
|
|
||||||
musicDirectory = "/home/sako/music";
|
|
||||||
extraConfig = builtins.readFile ../../../config/mpd/mpd.conf;
|
|
||||||
startWhenNeeded = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
# systemd fix pipewire
|
|
||||||
systemd.services.mpd.environment = {
|
|
||||||
XDG_RUNTIME_DIR = "/run/user/1000";
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,15 +0,0 @@
|
||||||
{ options, config, lib, pkgs, ...}:
|
|
||||||
with lib;
|
|
||||||
let cfg = config.modules.shell.zsh;
|
|
||||||
in {
|
|
||||||
options.modules.shell.zsh = {
|
|
||||||
enable = mkBoolOpt false;
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.zsh = {
|
|
||||||
enable = true;
|
|
||||||
promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-heme";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue