ok i think everythings normal now

This commit is contained in:
Sakooooo 2023-07-07 23:09:12 +03:00
parent 717a65f00c
commit 4a7d7d85be
Signed by: sako
GPG key ID: 3FD715D87D7725E0
4 changed files with 1 additions and 34 deletions

View file

@ -0,0 +1 @@
# TODO do this later

View file

@ -1,2 +0,0 @@
# TODO(sako):: Make this
{}

View file

@ -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";
};
}

View file

@ -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";
};
};
}