almost there for multiple users????

This commit is contained in:
Chris Kruining 2025-03-23 20:27:14 +01:00
parent f40207c455
commit ce69116c39
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
8 changed files with 68 additions and 50 deletions

View file

@ -12,27 +12,17 @@ in
home-manager.users.${user}.programs.starship = {
enable = true;
settings = {
scan_timeout = 10;
# Inserts a blank line between shell prompts
add_newline = true;
line_break.disabled = true;
format = "[ ](bold green)$os$username$hostname$nix_shell$git_branch$git_commit$git_state$git_status$directory$jobs$cmd_duration\n$character";
format = "[](bold green) $username@$hostname$nix_shell: $directory$cmd_duration$git_branch$git_commit$git_state$git_status$line_break[](green bold)$character";
username = {
style_user = "cyan bold";
style_root = "red bold";
format = "[$user]($style) ";
disabled = false;
format = "[$user]($style)";
show_always = true;
};
hostname = {
ssh_only = false;
ssh_symbol = "🌐 ";
format = "on [$hostname](bold red) ";
format = "[$hostname](bold red)";
trim_at = ".local";
disabled = false;
};
@ -51,9 +41,7 @@ in
};
git_commit = {
only_detached = true;
format = "[$hash]($style) ";
style = "yellow bold";
tag_disabled = false;
};
git_state = {
@ -61,12 +49,23 @@ in
};
git_status = {
style = "green bold";
format = "[$all_status $ahead_behind]($style) ";
style = "bold green";
conflicted = "🏳";
up_to_date = "";
untracked = " ";
ahead = "\${count}";
diverged = "\${ahead_count}\${behind_count}";
behind = "\${count}";
stashed = " ";
modified = " ";
staged = "[++\($count\)](green)";
renamed = " ";
deleted = " ";
};
directory = {
read_only = " 󰌾";
truncation_length = 0;
};
cmd_duration = {
@ -74,12 +73,8 @@ in
style = "blue";
};
jobs = {
style = "green bold";
};
os = {
format = "[$symbol](bold white) ";
format = "[$symbol](bold white)";
disabled = false;
symbols = {
@ -93,9 +88,8 @@ in
};
};
character = {
success_symbol = "[>](green bold)";
error_symbol = "[x](red bold)";
fill = {
symbol = " ";
};
};
};

View file

@ -1,16 +1,16 @@
{ config, options, lib, pkgs, user, ... }:
{ config, lib, user, ... }:
let
inherit (lib.modules) mkIf;
inherit (lib.strings) concatStringsSep;
inherit (lib.options) mkEnableOption;
cfg = config.modules.${user}.shell.toolset.yazi;
in
{
options.modules.${user}.shell.toolset.yazi = let
inherit (lib.options) mkEnableOption;
in {
enable = mkEnableOption "system-monitor";
options.modules.${user}.shell.toolset.yazi = {
enable = mkEnableOption "system-monitor";
};
config = mkIf config.modules.${user}.shell.toolset.yazi.enable {
config = mkIf cfg.enable {
home-manager.users.${user}.programs.yazi = {
enable = true;
};

View file

@ -39,7 +39,7 @@ in
};
};
config = {
config = mkIf (user != "root") {
users.users.${user} = {
description = (cfg.full_name or user);
extraGroups = cfg.groups ++ (if cfg.is_trusted then [ "wheel" ] else []);