feat!(flake): update homix

Update flake (`neovim-nightly-overlay` is fixed)
Format all `.nix` files
Unify package/module argument order:
    - `inputs`, `outputs`, `lib`, `pkgs`, `config`, ...
Move Jellyfin config to a `NixOS` module (first one, yay)
Add `direnv` to `reo101-shell` modules (was used, but not defined as wanted)
    - TODO: make it optional (module config options)
This commit is contained in:
reo101 2023-02-13 00:33:57 +02:00
parent 6a0898753d
commit df9ce2d4e2
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
17 changed files with 194 additions and 158 deletions

View file

@ -1,8 +1,10 @@
{ lib, pkgs, config, ... }:
with lib;
let
cfg = config.reo101.shell;
in {
in
{
imports = [
];
@ -15,10 +17,10 @@ in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
# Shell
zsh
starship
zoxide
direnv
];
programs.zsh = {
@ -216,7 +218,7 @@ in {
};
custom.local = {
shell = ["zsh" "-d" "-f"];
shell = [ "zsh" "-d" "-f" ];
when = ''[[ -z "$SSH_CLIENT" ]] && [[ `whoami` != "root" ]]'';
format = "[$symbol$output]($style)[@](bold yellow)";
command = "whoami";
@ -225,7 +227,7 @@ in {
};
custom.local_root = {
shell = ["zsh" "-d" "-f"];
shell = [ "zsh" "-d" "-f" ];
when = ''[[ -z "$SSH_CLIENT" ]] && [[ `whoami` == "root" ]]'';
format = "[ $output ]($style)[@](bold yellow)";
command = "whoami";
@ -233,7 +235,7 @@ in {
};
custom.ssh = {
shell = ["zsh" "-d" "-f"];
shell = [ "zsh" "-d" "-f" ];
when = ''[[ -n "$SSH_CLIENT" ]] && [[ `whoami` != "root" ]]'';
format = "[ $symbol$output ]($style)[@](bold yellow)";
command = "whoami";
@ -243,7 +245,7 @@ in {
};
custom.ssh_root = {
shell = ["zsh" "-d" "-f"];
shell = [ "zsh" "-d" "-f" ];
when = ''[[ -n "$SSH_CLIENT" ]] && [[ `whoami` == "root" ]]'';
format = "[ $symbol$output ]($style)[@](bold yellow)";
command = "whoami";
@ -253,4 +255,8 @@ in {
};
};
};
meta = {
maintainers = with lib.maintainers; [ reo101 ];
};
}