-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.nix
76 lines (64 loc) · 1.13 KB
/
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
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
{ config, pkgs, ... }:
{
imports = [
./programs
./theme/gtk.nix
];
wayland.windowManager.hyprland.enable = true;
home.username = "yahias";
home.homeDirectory = "/home/yahias";
home.packages = with pkgs; [
gnumake
wl-clipboard
ripgrep
fd
unzip
gcc
nodejs_22
pamixer
go
brightnessctl
xfce.thunar
python3
networkmanagerapplet
grimblast
neovim
zed-editor
cura
chromium
slack
node2nix
];
services.mako.enable = true;
services.network-manager-applet.enable = true;
programs.rofi.enable = true;
programs.tofi = {
enable = true;
settings = {
anchor = "bottom";
width = "100%";
height = 30;
horizontal = true;
prompt-text = " run: ";
outline-width = 0;
border-width = 0;
min-input-width = 120;
result-spacing = 15;
padding-top = 0;
padding-bottom = 0;
padding-left = 0;
padding-right = 0;
};
};
programs.wlogout = {
enable = true;
};
programs.git = {
enable = true;
userName = "YahiaChahine";
userEmail = "yahia.a.shahin@gmail.com";
};
home.stateVersion = "23.11";
# Let home Manager install and manage itself.
programs.home-manager.enable = true;
}