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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
{ pkgs, inputs, ... }:
{
imports = [
./wayland/hyprland/binds.nix
./wayland/waybar.nix
./terminals/foot.nix
./shells/fish.nix
./shells/starship.nix
./programs/spicetify.nix
# ./editors/nvf.nix
./editors/nixvim.nix
./editors/helix.nix
./wayland/xdg.nix
./wayland/eww.nix
./programs/librewolf.nix
./programs/nixcord.nix
# ./stylix.nix
];
home.username = "adam";
home.homeDirectory = "/home/adam";
home.stateVersion = "25.05";
home.packages = with pkgs; [
brave
winboat
ripgrep
jq
nix-index
qbittorrent-enhanced
fastfetch
foot
wofi
inputs.awww.packages.${pkgs.stdenv.hostPlatform.system}.awww
bitwarden-desktop
yt-dlp-light
ffmpeg
mpv
gimp
obs-cmd
obs-studio
mako
satty
thunderbird
nautilus
kdePackages.dolphin
xfce.thunar-volman
xfce.thunar-vcs-plugin
xfce.thunar-archive-plugin
magic-wormhole
obsidian
xfce.thunar
alsa-utils
];
programs.btop.enable = true;
programs.git = {
enable = true;
settings = {
user.name = "adikro";
user.email = "adikro@disroot.org";
init.defaultBranch = "main";
};
};
gtk = {
enable = true;
theme = {
name = "Adwaita-dark";
package = pkgs.gnome-themes-extra;
};
};
qt = {
enable = true;
style.name = "Breeze-Dark";
};
wayland.windowManager.hyprland = {
enable = true;
settings = {
general = {
gaps_in = 6;
gaps_out = 16;
border_size = 2;
};
decoration = {
rounding = 12;
};
"$mod" = "ALT";
monitor = [
"DP-1,2560x1440@240,0x0,1,vrr,0"
];
workspace = [
"1,monitor:DP-1,default:true"
"2,monitor:DP-1"
"3,monitor:DP-1"
"4,monitor:DP-1"
"5,monitor:DP-1"
];
input = {
accel_profile = "flat";
sensitivity = -0.6;
repeat_rate = 45;
repeat_delay = 750;
};
animations = {
enabled = false;
};
};
};
programs.home-manager.enable = true;
}
|