122 lines
2.7 KiB
Nix
122 lines
2.7 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
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";
|
|
home.packages = with pkgs; [
|
|
kitty # terminfo support
|
|
];
|
|
|
|
imports = [
|
|
./home-manager/hyprland.nix
|
|
./home-manager/fish.nix
|
|
];
|
|
|
|
};
|
|
|
|
# keep everything using home manager within this block
|
|
home-manager.users.${user} = { pkgs, ... }: {
|
|
home.username = "${user}";
|
|
home.homeDirectory = "/home/${user}";
|
|
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
|
|
libnotify # notifications
|
|
mako # notification daemon
|
|
xdg-desktop-portal-hyprland # desktop portal (hyprland fork)
|
|
#neovim # text editor
|
|
yt-dlp # video downloader
|
|
sweet # gtk theme
|
|
];
|
|
|
|
imports = [
|
|
./home-manager/hyprland.nix
|
|
./home-manager/fish.nix
|
|
];
|
|
|
|
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 = "/run/current-system/sw/bin/ssh-agent -D -a $SSH_AUTH_SOCK";
|
|
};
|
|
Install = {
|
|
WantedBy = [ "default.target" ];
|
|
};
|
|
};
|
|
};
|
|
# user environment variables
|
|
sessionVariables = {
|
|
SSH_AUTH_SOCK = "/run/user/1000/ssh-agent.socket";
|
|
};
|
|
};
|
|
|
|
# git configuration
|
|
programs.git = {
|
|
enable = true;
|
|
extraConfig = {
|
|
init = {
|
|
defaultBranch = "main";
|
|
};
|
|
user = {
|
|
name = "RealStickman";
|
|
email = "mrc@frm01.net";
|
|
};
|
|
gitlab = {
|
|
user = "RealStickman";
|
|
};
|
|
github = {
|
|
user = "RealStickman";
|
|
};
|
|
};
|
|
};
|
|
|
|
# gtk theming
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Sweet-Dark";
|
|
};
|
|
iconTheme = {
|
|
name = "Sweet-Rainbow";
|
|
};
|
|
font = {
|
|
name = "Fira Sans";
|
|
size = 12;
|
|
};
|
|
};
|
|
|
|
services.mako.enable = true;
|
|
};
|
|
}
|