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
|
|
|
|
{
|
2022-08-28 15:02:53 +03:00
|
|
|
imports = (import ./ui) ++ (import ./shell) ++ (import ./progs);
|
2022-04-06 14:15:34 +03:00
|
|
|
|
2022-08-27 15:02:09 +03:00
|
|
|
# targets.genericLinux.enable = true;
|
2022-04-07 14:13:44 +03:00
|
|
|
|
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
|
|
|
|
2022-04-06 14:15:34 +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
|
|
|
|
2022-08-24 11:43:20 +03:00
|
|
|
asciinema # record the terminal
|
|
|
|
neofetch # command-line system information
|
2022-08-27 15:02:09 +03:00
|
|
|
alacritty
|
2022-08-24 11:43:20 +03:00
|
|
|
|
2022-04-07 17:04:30 +03:00
|
|
|
# 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
|
2022-04-06 14:15:34 +03:00
|
|
|
|
2022-04-07 17:04:30 +03:00
|
|
|
# haskell
|
|
|
|
stylish-haskell # formatter
|
2022-04-06 14:15:34 +03:00
|
|
|
|
2022-04-07 17:04:30 +03:00
|
|
|
# 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
|
2022-08-28 15:02:53 +03:00
|
|
|
postgresql_12 # 🤷 I need only psql
|
2022-04-05 17:18:23 +03:00
|
|
|
];
|
|
|
|
|
2022-08-28 15:02:53 +03:00
|
|
|
# user interface
|
|
|
|
ui = {
|
2022-08-28 23:35:11 +03:00
|
|
|
# windows manager
|
|
|
|
xmonad.enable = true;
|
|
|
|
# bar
|
|
|
|
polybar.enable = true;
|
|
|
|
# lock
|
|
|
|
betterlockscreen.enable = true;
|
2022-08-24 23:54:30 +03:00
|
|
|
};
|
2022-04-23 23:42:26 +03:00
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
# shell
|
2022-08-24 14:02:45 +03:00
|
|
|
shell = {
|
|
|
|
zsh.enable = true;
|
|
|
|
|
|
|
|
prompt.starship.enable = true;
|
|
|
|
};
|
2022-04-07 14:13:44 +03:00
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
# programs
|
|
|
|
progs = {
|
2022-08-28 15:23:16 +03:00
|
|
|
alacritty.enable = true;
|
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
git = with secrets.git; {
|
2022-04-07 14:13:44 +03:00
|
|
|
enable = true;
|
2022-06-01 16:48:29 +03:00
|
|
|
gpgKey = gpgSigningKey;
|
2022-08-28 15:02:53 +03:00
|
|
|
inherit userName userEmail;
|
2022-04-07 14:13:44 +03:00
|
|
|
};
|
2022-04-17 00:35:27 +03:00
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
# password manager
|
|
|
|
pass.enable = true;
|
2022-04-05 10:42:47 +03:00
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
# email manager
|
|
|
|
himalaya.enable = true;
|
2022-04-05 16:40:07 +03:00
|
|
|
|
2022-05-03 23:35:29 +03:00
|
|
|
# finance manager
|
|
|
|
hledger.enable = true;
|
|
|
|
|
2022-08-05 17:45:55 +03:00
|
|
|
# file manager
|
|
|
|
vifm.enable = true;
|
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
# editor
|
|
|
|
nvim = {
|
2022-04-05 16:40:07 +03:00
|
|
|
enable = true;
|
2022-04-27 01:17:51 +03:00
|
|
|
default = true;
|
2022-04-05 16:40:07 +03:00
|
|
|
};
|
2022-04-05 17:02:37 +03:00
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
# tools
|
|
|
|
exa.enable = true;
|
|
|
|
zoxide.enable = true;
|
2022-04-05 16:40:07 +03:00
|
|
|
};
|
|
|
|
|
2022-04-27 01:17:51 +03:00
|
|
|
accounts.email = {
|
|
|
|
# TODO: add module for email account
|
|
|
|
accounts = secrets.emailAccounts;
|
2022-04-05 11:26:26 +03:00
|
|
|
};
|
|
|
|
|
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-06 14:15:34 +03:00
|
|
|
|
2022-04-14 16:55:53 +03:00
|
|
|
"pictures/wallpapers" = {
|
|
|
|
source = ../wallpapers;
|
|
|
|
recursive = true;
|
|
|
|
};
|
|
|
|
};
|
2022-04-06 14:15:34 +03:00
|
|
|
|
2022-08-24 23:54:30 +03:00
|
|
|
xsession.initExtra = ''
|
|
|
|
xrandr --output HDMI-A-0 --rotate right --left-of DisplayPort-1
|
|
|
|
'';
|
2022-08-05 17:46:24 +03:00
|
|
|
|
2022-04-14 16:55:53 +03:00
|
|
|
xdg = {
|
|
|
|
enable = true;
|
|
|
|
configFile = {
|
|
|
|
# add config for alacritty terminal
|
2022-08-28 15:23:16 +03:00
|
|
|
# "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;
|
|
|
|
};
|
2022-04-07 17:04:30 +03:00
|
|
|
};
|
2022-04-27 01:17:51 +03:00
|
|
|
|
|
|
|
# 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
|
|
|
}
|