This repository has been archived on 2023-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/home-manager.nix

79 lines
2.4 KiB
Nix
Raw Normal View History

2023-04-17 20:47:04 +02:00
{ config, pkgs, ... }:
2023-04-16 19:29:38 +02:00
let
user = "exu";
hostname = "nixos";
in
{
imports = [
<home-manager/nixos>
];
# root home
2023-04-17 21:02:17 +02:00
# keep everything using home manager within this block
2023-04-16 19:29:38 +02:00
home-manager.users.${user} = { pkgs, ... }: {
2023-04-17 21:02:17 +02:00
home.username = "${user}";
home.homeDirectory = "/home/${user}";
2023-04-16 19:29:38 +02:00
home.stateVersion = "22.11";
home.packages = with pkgs; [
firefox # browser
kitty # terminal
pciutils # lspci command
git # git
emacs # emacs editor
emacsPackages.doom # doom emacs configuration
acpilight # controlling laptop monitor backlight
networkmanagerapplet # network configuration
wofi # app launcher (wayland replacement for rofi)
freetype # font rendering and configuration
fira # fira sans font
fira-code # fira code font
fish # fish shell
2023-04-16 19:29:38 +02:00
];
2023-04-17 20:31:22 +02:00
2023-04-17 21:02:17 +02:00
programs = {
fish = {
enable = true;
2023-04-17 21:27:08 +02:00
interactiveShellInit =
''
set fish_greeting "Good Morning! Nice day for fishing ain't it! Hu ha!"
'';
2023-04-17 21:02:17 +02:00
shellAliases = {
wget = "wget -c";
};
functions = {
fish_prompt =
''
# Defined in /home/marc/.config/fish/functions/fish_prompt.fish @ line 2
# slightly modified from defaults
set -l last_pipestatus $pipestatus
set -lx __fish_last_status $status # Export for __fish_print_pipestatus.
set -l normal (set_color normal)
2023-04-17 20:37:12 +02:00
2023-04-17 21:02:17 +02:00
# Color the prompt differently when we're root
set -l color_cwd $fish_color_cwd
set -l suffix '>'
2023-04-17 20:37:12 +02:00
2023-04-17 21:02:17 +02:00
# If we're running via SSH, change the host color.
set -l color_host $fish_color_host
2023-04-17 20:37:12 +02:00
2023-04-17 21:02:17 +02:00
# Write pipestatus
# If the status was carried over (e.g. after `set`), don't bold it.
set -l bold_flag --bold
set -q __fish_prompt_status_generation; or set -g __fish_prompt_status_generation $status_generation
if test $__fish_prompt_status_generation = $status_generation
set bold_flag
end
set __fish_prompt_status_generation $status_generation
set -l prompt_status (__fish_print_pipestatus "[" "]" "|" (set_color $fish_color_status) (set_color $bold_flag $fish_color_status) $last_pipestatus)
2023-04-17 20:37:12 +02:00
2023-04-17 21:02:17 +02:00
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
'';
};
2023-04-17 20:37:12 +02:00
};
2023-04-17 20:31:22 +02:00
};
};
2023-04-16 19:29:38 +02:00
}