flakes/users/rin/home.nix

66 lines
1.1 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }: rec {
home = {
username = "rin";
homeDirectory = "/home/rin";
stateVersion = "21.05";
packages = with pkgs; [
appimage-run
2021-05-21 22:09:18 +07:00
cachix
2021-05-27 12:59:38 +07:00
chromium
discord-canary
element-desktop
firefox
gimp
glxinfo
gnupg
lf
neofetch
pavucontrol
tor-browser-bundle-bin
2021-05-28 14:56:53 +07:00
transcrypt
wine-osu
(winetricks.override { wine = wine-osu; })
xorg.xgamma
];
};
imports = [
2021-05-27 15:49:40 +07:00
./theming.nix
2021-05-27 12:54:33 +07:00
./xdg.nix
./alacritty.nix
./neovim.nix
2021-05-26 21:21:58 +07:00
./npm.nix
./rofi.nix
./zsh.nix
./dunst.nix
./picom.nix
./polybar.nix
./i3.nix
];
programs = {
feh.enable = true;
2021-05-26 22:29:45 +07:00
direnv = {
enable = true;
enableNixDirenvIntegration = true;
};
git = {
enable = true;
userName = "LavaDesu";
userEmail = "me@lava.moe";
signing = {
key = "059F098EBF0E9A13E10A46BF6500251E087653C9";
signByDefault = true;
};
};
password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
};
}