system/home/home.nix

146 lines
3.1 KiB
Nix
Raw Normal View History

2022-04-05 10:03:33 +03:00
{ config, pkgs, ... }:
let
2022-08-27 23:41:37 +03:00
secrets = import ../secrets.nix;
2022-04-05 10:03:33 +03:00
in
{
imports = (import ./ui) ++ (import ./shell) ++ (import ./progs);
2022-08-27 15:02:09 +03:00
# targets.genericLinux.enable = true;
2022-04-05 10:03:33 +03:00
# Home Manager needs a bit of information about you and the
# paths it should manage.
2022-08-28 04:54:03 +03:00
home.username = secrets.user.name;
home.homeDirectory = secrets.user.dir;
2022-04-05 10:03:33 +03:00
home.keyboard = {
model = "pc105";
layout = "us,ru";
variant = "dvorak,";
options = ["grp:win_space_toggle"];
};
home.packages = with pkgs; [
2022-08-27 23:41:37 +03:00
kotatogram-desktop
2022-08-28 04:54:03 +03:00
docker-compose
2022-04-05 17:47:31 +03:00
asciinema # record the terminal
neofetch # command-line system information
2022-08-27 15:02:09 +03:00
alacritty
# tools
xh # friendly and fast tool for sending HTTP requests
fd # a simple, fast and user-friendly alternative to find
bat # a cat clone with syntax highlighting and git integration
# haskell
stylish-haskell # formatter
# browser
librewolf # a fork of firefox, focused on privacy, security and freedom
2022-08-28 04:54:03 +03:00
# for work
google-cloud-sdk
kubectl
postgresql_12 # 🤷 I need only psql
2022-04-05 17:18:23 +03:00
];
# user interface
ui = {
wm.xmonad.enable = true;
2022-08-24 23:54:30 +03:00
bar.polybar.enable = true;
};
# shell
2022-08-24 14:02:45 +03:00
shell = {
zsh.enable = true;
prompt.starship.enable = true;
};
# programs
progs = {
alacritty.enable = true;
git = with secrets.git; {
enable = true;
2022-06-01 16:48:29 +03:00
gpgKey = gpgSigningKey;
inherit userName userEmail;
};
# password manager
pass.enable = true;
2022-04-05 10:42:47 +03:00
# email manager
himalaya.enable = true;
2022-04-05 16:40:07 +03:00
# finance manager
hledger.enable = true;
# file manager
vifm.enable = true;
# editor
nvim = {
2022-04-05 16:40:07 +03:00
enable = true;
default = true;
2022-04-05 16:40:07 +03:00
};
# tools
exa.enable = true;
zoxide.enable = true;
2022-04-05 16:40:07 +03:00
};
accounts.email = {
# TODO: add module for email account
accounts = secrets.emailAccounts;
2022-04-05 11:26:26 +03:00
};
# TODO: add module for lock screen
services.screen-locker = {
2022-04-05 17:18:23 +03:00
enable = true;
lockCmd = "/bin/bash -c ${config.home.homeDirectory}/scripts/lock.sh";
inactiveInterval = 15;
2022-04-05 17:18:23 +03:00
};
2022-04-14 16:55:53 +03:00
home.file = {
"scripts" = {
source = ../scripts;
recursive = true;
};
2022-04-14 16:55:53 +03:00
"pictures/wallpapers" = {
source = ../wallpapers;
recursive = true;
};
};
2022-08-24 23:54:30 +03:00
xsession.initExtra = ''
xrandr --output HDMI-A-0 --rotate right --left-of DisplayPort-1
'';
2022-04-14 16:55:53 +03:00
xdg = {
enable = true;
configFile = {
# add config for alacritty terminal
# "alacritty/alacritty.yml".source = ../programs/alacritty/alacritty.yml;
2022-04-14 16:55:53 +03:00
"stylish-haskell/config.yaml".source = ../programs/stylish-haskell/config.yml;
};
};
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.11";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
2022-04-05 10:03:33 +03:00
}