Finally? got the right syntax
This commit is contained in:
parent
5ea52c158b
commit
23e3e2ef38
@ -7,10 +7,12 @@ in
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
<home-manager/nixos>
|
<home-manager/nixos>
|
||||||
<home-manager/modules/programs/fish.nix>
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# keep everything using home manager within this block
|
||||||
home-manager.users.${user} = { pkgs, ... }: {
|
home-manager.users.${user} = { pkgs, ... }: {
|
||||||
|
home.username = "${user}";
|
||||||
|
home.homeDirectory = "/home/${user}";
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.firefox # browser
|
pkgs.firefox # browser
|
||||||
@ -28,7 +30,6 @@ in
|
|||||||
pkgs.fwupd-efi # firmware updates additional EFI stuff
|
pkgs.fwupd-efi # firmware updates additional EFI stuff
|
||||||
pkgs.fish # fish shell
|
pkgs.fish # fish shell
|
||||||
];
|
];
|
||||||
};
|
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
fish = {
|
fish = {
|
||||||
@ -38,9 +39,9 @@ in
|
|||||||
};
|
};
|
||||||
functions = {
|
functions = {
|
||||||
fish_prompt =
|
fish_prompt =
|
||||||
''
|
''
|
||||||
# Defined in /home/marc/.config/fish/functions/fish_prompt.fish @ line 2
|
# Defined in /home/marc/.config/fish/functions/fish_prompt.fish @ line 2
|
||||||
# slightly modified from defaults
|
# slightly modified from defaults
|
||||||
set -l last_pipestatus $pipestatus
|
set -l last_pipestatus $pipestatus
|
||||||
set -lx __fish_last_status $status # Export for __fish_print_pipestatus.
|
set -lx __fish_last_status $status # Export for __fish_print_pipestatus.
|
||||||
set -l normal (set_color normal)
|
set -l normal (set_color normal)
|
||||||
@ -63,8 +64,9 @@ in
|
|||||||
set -l prompt_status (__fish_print_pipestatus "[" "]" "|" (set_color $fish_color_status) (set_color $bold_flag $fish_color_status) $last_pipestatus)
|
set -l prompt_status (__fish_print_pipestatus "[" "]" "|" (set_color $fish_color_status) (set_color $bold_flag $fish_color_status) $last_pipestatus)
|
||||||
|
|
||||||
echo -n -s (set_color $fish_color_user) "$USER" $normal (set_color $fish_color_separator) @ $normal (set_color $color_host) (prompt_hostname) $normal ' ' (set_color $color_cwd) (prompt_pwd) $normal (fish_vcs_prompt) $normal " "$prompt_status $suffix " "
|
echo -n -s (set_color $fish_color_user) "$USER" $normal (set_color $fish_color_separator) @ $normal (set_color $color_host) (prompt_hostname) $normal ' ' (set_color $color_cwd) (prompt_pwd) $normal (fish_vcs_prompt) $normal " "$prompt_status $suffix " "
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user