-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.nix
44 lines (41 loc) · 874 Bytes
/
home.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
config,
pkgs,
inputs,
...
}: {
home.username = "xzvf";
home.homeDirectory = "/home/xzvf";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
nixpkgs.config = {
allowUnfree = true;
allowUnfreePredicate = _: true;
};
imports = [
./home/devtools.nix
./home/packages.nix
./home/zsh/zsh.nix
./home/kitty/kitty.nix
./home/tmux/tmux.nix
./home/neovim/neovim.nix
];
# MISC
programs.fzf.enable = true;
fonts.fontconfig.enable = true;
services.easyeffects.enable = true; # requires dconf
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
];
};
home.sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
BROWSER = "firefox";
XDG_CURRENT_DESKTOP = "KDE";
};
}