2023-02-12 23:33:57 +01:00
|
|
|
{ inputs, outputs, lib, pkgs, config, ... }:
|
2023-02-11 00:08:58 +01:00
|
|
|
|
|
|
|
{
|
2023-02-17 01:47:22 +01:00
|
|
|
imports = [
|
2023-02-12 00:32:13 +01:00
|
|
|
inputs.wired.homeManagerModules.default
|
|
|
|
];
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
overlays = builtins.attrValues outputs.overlays ++ [
|
2023-02-12 23:33:57 +01:00
|
|
|
inputs.neovim-nightly-overlay.overlay
|
2023-02-12 00:32:13 +01:00
|
|
|
inputs.zig-overlay.overlays.default
|
|
|
|
inputs.wired.overlays.default
|
|
|
|
];
|
|
|
|
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
2023-02-11 00:08:58 +01:00
|
|
|
|
|
|
|
home = {
|
|
|
|
username = "reo101";
|
|
|
|
homeDirectory = "/home/reo101";
|
|
|
|
stateVersion = "22.11";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
2023-02-12 00:32:13 +01:00
|
|
|
## WM
|
2023-03-13 17:18:03 +01:00
|
|
|
# river
|
|
|
|
# swww # wallpaper deamon
|
|
|
|
# # wired-notify # dunst on wayland
|
|
|
|
# waybar # status bar
|
|
|
|
# xwayland
|
|
|
|
# wl-clipboard
|
|
|
|
# slurp # select regions from wayland
|
|
|
|
# grim # grap images from regions
|
|
|
|
# playerctl # music control
|
2023-02-11 00:08:58 +01:00
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Terminals
|
2023-02-17 01:48:35 +01:00
|
|
|
# wezterm
|
2023-02-11 00:08:58 +01:00
|
|
|
foot
|
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Core
|
2023-02-11 00:08:58 +01:00
|
|
|
neovim
|
2023-03-23 07:23:17 +01:00
|
|
|
fennel-language-server
|
2023-02-11 00:08:58 +01:00
|
|
|
git
|
2023-03-23 07:23:17 +01:00
|
|
|
gnupg
|
2023-02-11 00:08:58 +01:00
|
|
|
firefox
|
|
|
|
discord
|
2023-03-13 17:18:03 +01:00
|
|
|
armcord # modded discord
|
2023-02-17 01:48:35 +01:00
|
|
|
vifm # file editor
|
|
|
|
pciutils # lspci
|
|
|
|
usbutils # lsusb
|
2023-03-06 17:31:14 +01:00
|
|
|
(uutils-coreutils.override { prefix = ""; }) # coreutils in rust
|
2023-02-11 00:08:58 +01:00
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Shell
|
2023-02-17 01:47:22 +01:00
|
|
|
# zsh
|
|
|
|
# starship
|
|
|
|
# zoxide
|
2023-02-12 00:32:13 +01:00
|
|
|
ripgrep
|
2023-02-11 00:08:58 +01:00
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Dhall
|
2023-02-11 00:08:58 +01:00
|
|
|
dhall
|
|
|
|
dhall-lsp-server
|
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Nix
|
2023-02-11 00:08:58 +01:00
|
|
|
rnix-lsp
|
|
|
|
nil
|
|
|
|
direnv
|
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Torrents
|
2023-02-11 00:08:58 +01:00
|
|
|
tremc
|
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Rust
|
|
|
|
rustc
|
|
|
|
cargo
|
2023-03-06 17:31:14 +01:00
|
|
|
rust-analyzer
|
|
|
|
clang
|
|
|
|
openssl
|
|
|
|
pkg-config
|
2023-02-12 00:32:13 +01:00
|
|
|
|
2023-03-06 17:28:13 +01:00
|
|
|
## Vim FMI
|
2023-03-23 07:23:17 +01:00
|
|
|
vim-fmi-cli
|
2023-03-06 17:28:13 +01:00
|
|
|
|
2023-02-12 00:32:13 +01:00
|
|
|
## Zig
|
2023-02-11 00:08:58 +01:00
|
|
|
# zigpkgs."0.10.1"
|
|
|
|
zigpkgs.master
|
|
|
|
# inputs.zls-overlay.packages.x86_64-linux.default
|
|
|
|
];
|
|
|
|
|
|
|
|
# Enable the GPG Agent daemon.
|
|
|
|
services.gpg-agent = {
|
|
|
|
enable = true;
|
|
|
|
defaultCacheTtl = 1800;
|
|
|
|
enableSshSupport = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
userName = "reo101";
|
|
|
|
userEmail = "pavel.atanasov2001@gmail.com";
|
|
|
|
};
|
|
|
|
|
2023-03-13 17:18:03 +01:00
|
|
|
reo101 = {
|
2023-02-21 22:31:38 +01:00
|
|
|
shell = {
|
|
|
|
enable = true;
|
|
|
|
direnv = true;
|
|
|
|
zoxide = true;
|
|
|
|
};
|
2023-03-13 17:18:03 +01:00
|
|
|
river = {
|
2023-02-21 22:31:38 +01:00
|
|
|
enable = true;
|
|
|
|
};
|
2023-03-13 17:18:03 +01:00
|
|
|
wezterm = {
|
|
|
|
enable = true;
|
2023-02-12 00:32:13 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-02-11 00:08:58 +01:00
|
|
|
home.file = {
|
|
|
|
".config/nvim" = {
|
|
|
|
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.local/src/reovim";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# home.file.".stack/config.yaml".text = lib.generators.toYAML {} {
|
|
|
|
# templates = {
|
|
|
|
# scm-init = "git";
|
|
|
|
# params = with config.programs.git; {
|
|
|
|
# author-name = userName;
|
|
|
|
# author-email = userEmail;
|
|
|
|
# github-username = userName;
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
# nix.enable = true;
|
|
|
|
# };
|
|
|
|
}
|