configs/nixos-config/home-manager.nix

179 lines
4.9 KiB
Nix
Raw Normal View History

2023-05-01 16:48:53 +02:00
{ config, pkgs, ... }:
2023-04-16 19:29:38 +02:00
let
user = "exu";
hostname = "nixos";
in
{
imports = [
<home-manager/nixos>
];
# root home
home-manager.users.root = { pkgs, ... }: {
home.username = "root";
home.homeDirectory = "/root";
home.stateVersion = "22.11";
2023-04-17 21:52:24 +02:00
home.packages = with pkgs; [
kitty # terminfo support
];
2023-04-18 17:02:45 +02:00
imports = [
2023-05-01 09:47:30 +02:00
./home-manager/hyprland.nix
2023-05-01 09:48:31 +02:00
./home-manager/fish.nix
2023-04-18 17:02:45 +02:00
];
};
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
acpilight # controlling laptop monitor backlight
networkmanagerapplet # network configuration
wofi # app launcher (wayland replacement for rofi)
fish # fish shell
2023-04-18 18:07:19 +02:00
libnotify # notifications
2023-04-18 18:05:33 +02:00
mako # notification daemon
xdg-desktop-portal-hyprland # desktop portal (hyprland fork)
2023-05-01 12:49:53 +02:00
#neovim # text editor
2023-05-01 12:33:34 +02:00
yt-dlp # video downloader
2023-05-01 14:59:04 +02:00
#sweet # gtk theme
2023-05-01 16:23:51 +02:00
waybar # status bar
2023-05-01 17:39:08 +02:00
playerctl # mpris
2023-05-02 16:49:18 +02:00
xfce.thunar # file manager
2023-05-02 17:01:50 +02:00
xfce.thunar-archive-plugin # manage archives in thunar
2023-05-02 18:52:16 +02:00
#xfce.xfce4-settings # xfce settings manager
2023-05-02 18:46:36 +02:00
xfce.xfconf # xfce config storage
transmission-remote-gtk # torrent remote controll gui
2023-04-16 19:29:38 +02:00
];
2023-04-17 20:31:22 +02:00
2023-04-18 17:11:04 +02:00
imports = [
2023-05-01 09:39:08 +02:00
./home-manager/hyprland.nix
2023-05-01 09:48:31 +02:00
./home-manager/fish.nix
2023-04-18 17:11:04 +02:00
];
systemd.user = {
# user services
services = {
# ssh-agent user service
ssh-agent = {
Unit = {
Description = "SSH key agent";
};
Service = {
Type = "simple";
Environment = "SSH_AUTH_SOCK=%t/ssh-agent.socket";
ExecStart = "${pkgs.openssh}/bin/ssh-agent -D -a $SSH_AUTH_SOCK";
};
Install = {
WantedBy = [ "default.target" ];
};
2023-05-01 11:38:22 +02:00
};
};
# user environment variables
sessionVariables = {
2023-05-05 12:56:17 +02:00
# see https://discourse.nixos.org/t/how-to-use-xdg-runtime-dir-in-pam-sessionvariables/10120/3 about the builtin variable
SSH_AUTH_SOCK = "${builtins.getEnv"XDG_RUNTIME_DIR"}/ssh-agent.socket";
};
2023-05-01 11:38:22 +02:00
};
2023-05-01 13:32:34 +02:00
# git configuration
2023-05-01 13:36:03 +02:00
programs.git = {
enable = true;
extraConfig = {
init = {
defaultBranch = "main";
};
user = {
name = "RealStickman";
email = "mrc@frm01.net";
};
gitlab = {
user = "RealStickman";
};
github = {
user = "RealStickman";
};
2023-05-01 13:32:34 +02:00
};
};
programs = {
waybar = {
enable = true;
settings = {
mainBar = (builtins.fromJSON (builtins.readFile ./home-manager/config/waybar/config.json));
};
style = (builtins.readFile ./home-manager/config/waybar/style.css);
};
kitty = {
enable = true;
extraConfig = (builtins.readFile ./home-manager/config/kitty/kitty.conf);
};
ssh = {
enable = true;
extraOptionOverrides = {
extraConfig = "AddKeysToAgent yes";
};
matchBlocks = [
{
host = "gitlab.com";
identityFile = [ "${builtins.getEnv"HOME"}/.ssh/id_ed25519_git" ];
}
{
host = "github.com";
identityFile = [ "${builtins.getEnv"HOME"}/.ssh/id_ed25519_git" ];
}
{
host = "gitea.exu.li";
identityFile = [ "${builtins.getEnv"HOME"}/.ssh/id_ed25519_git" ];
}
{
host = "aur.archlinux.org";
identityFile = [ "${builtins.getEnv"HOME"}/.ssh/id_ed25519_git" ];
}
];
2023-05-01 16:52:08 +02:00
};
2023-05-01 16:23:51 +02:00
};
home.file = {
2023-05-02 16:49:18 +02:00
# Scripts
".scripts/waybar/player-mpris-tail.py" = {
source = ./home-manager/scripts/waybar/player-mpris-tail.py;
executable = true;
};
2023-05-02 16:49:18 +02:00
# Thunar configuration
".config/Thunar" = {
2023-05-02 16:49:18 +02:00
source = ./home-manager/config/Thunar;
#recursive = true;
2023-05-02 16:49:18 +02:00
};
# templates
".config/Vorlagen" = {
2023-05-02 16:49:18 +02:00
source = ./home-manager/config/Vorlagen;
#recursive = true;
2023-05-02 16:49:18 +02:00
};
# xfce4 settings
2023-05-02 18:52:24 +02:00
".config/xfce4".source = ./home-manager/config/xfce4;
2023-05-02 17:26:11 +02:00
# xdg user dirs
".config/user-dirs.dirs".source = ./home-manager/config/user-dirs.dirs;
# xdg user locales
".config/user-dirs.locale".source = ./home-manager/config/user-dirs.locale;
# libreoffice settings
".config/libreoffice".source = ./home-manager/config/libreoffice;
# transmission remote settings
".config/transmission-remote-gtk".source = ./home-manager/config/transmission-remote-gtk;
# TODO firefox configuration
2023-05-05 15:00:38 +02:00
# TODO calibre configuration
};
2023-05-01 13:52:14 +02:00
2023-04-18 18:05:33 +02:00
services.mako.enable = true;
2023-04-17 20:31:22 +02:00
};
2023-04-16 19:29:38 +02:00
}