-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
108 lines (95 loc) · 1.93 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
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
{ config, pkgs, ... }:
{
imports = [
./config/nixvim.nix
./config/sway.nix
#./config/player.nix
];
home.username = "fabian";
home.homeDirectory = "/home/fabian";
xresources.properties = {
"Xcursor.size" = 16;
"Xft.dpi" = 90;
};
nixpkgs.config.allowUnfree = true;
home.enableNixpkgsReleaseCheck = false;
home.packages = with pkgs; [
vlc
slurp
grim
ncmpcpp
xdg-utils
brightnessctl
neofetch
onefetch
zip
unzip
jq
sysstat
ethtool
filezilla
qbittorrent
pciutils
usbutils
eza
python3
rustup
vscode
neovide
vim
gcc
discord
firefox
jetbrains-toolbox
blueman
rofi
pavucontrol
dolphin
swaybg
playerctl
waybar
curl
wget
wezterm
qbittorrent
git
cava
mpd
mpv
mpc-cli
];
programs.git = {
enable = true;
userName = "Fab1anDev";
userEmail = "Fab1anDev.de";
};
programs.starship = {
enable = true;
settings = {
add_newline = false;
aws.disabled = true;
gcloud.disabled = true;
line_break.disabled = true;
};
};
programs.fish = {
enable = true;
shellInit = ''clear; neofetch'';
shellAliases = {
c = "clear";
serve = "python -m http.server";
ls = "exa -l --icons=always";
ns = "nix-shell";
rm = "rm -rfv";
mv = "mv -v";
rgen = "sudo nix profile wipe-history --profile /nix/var/nix/profiles/system --older-than 1d";
update = "sudo nixos-rebuild switch";
};
};
home.file.".config/wezterm/wezterm.lua".source = ./config/wezterm/wezterm.lua;
home.file.".config/rofi/config.rasi".source = ./config/rofi/config.rasi;
home.file.".config/waybar/config".source = ./config/waybar/config;
home.file.".config/waybar/style.css".source = ./config/waybar/style.css;
home.stateVersion = "23.11";
programs.home-manager.enable = true;
}