-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.nix
175 lines (152 loc) · 5.19 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{ config, pkgs, alacritty-apply, ... }:
let
# don't actually install this
term-at-opener = pkgs.writeScriptBin "term-at.sh" (builtins.readFile ./scripts/term-at.sh);
github-opener = pkgs.writeScriptBin "open-github.nu" (builtins.readFile ./scripts/open-github.nu);
move-ws-to-output = pkgs.writeScriptBin "move-ws-to-output" (builtins.readFile ./scripts/move-ws-to-output.nu);
in
{
# load separate files
imports = [
./includes/neovim.nix
];
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "directxman12";
home.homeDirectory = "/home/directxman12";
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
# introduces backwards incompatible changes.
#
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "22.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs; [
zsh
nushell
tree
unzip
dig
bat
fd
ripgrep
wget
curl
alacritty-apply.packages.${system}.default
htop
# till the latest in nixos
(obsidian.overrideAttrs rec {
version = "1.4.16";
src = fetchurl {
url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/obsidian-${version}.tar.gz";
hash = "sha256-PBKLGs3MZyarSMiWnjqY7d9bQrKu2uLAvLUufpHLxcw=";
};
})
# google-chrome-dev # moving to system level to match pipewire?
# # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your
# # environment:
# (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!"
# '')
move-ws-to-output
# fonts for all this stuff
font-awesome
(nerdfonts.override { fonts = [ "DejaVuSansMono" ]; })
noto-fonts
noto-fonts-emoji
noto-fonts-cjk-serif
noto-fonts-cjk-sans
dejavu_fonts
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage
# plain files is through 'home.file'.
home.file = {
".zshrc".source = dotfiles/zshrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
};
# (and for .config dirs)
xdg.configFile = {
"sway/config".source = xdg-configs/sway/config;
"tofi/config".source = xdg-configs/tofi/config;
"kanshi/config".source = xdg-configs/kanshi/config;
"waybar/config".source = xdg-configs/waybar/config;
"waybar/style.css".source = xdg-configs/waybar/style.css;
"alacritty/alacritty.yml".source = xdg-configs/alacritty/alacritty.yml;
"alacritty/solarized-dark-custom.yml".source = xdg-configs/alacritty/solarized-dark-custom.yml;
"alacritty/solarized-light.yml".source = xdg-configs/alacritty/solarized-light.yml;
"alacritty/alacritty.toml".source = xdg-configs/alacritty/alacritty.toml;
"alacritty/solarized-dark-custom.toml".source = xdg-configs/alacritty/solarized-dark-custom.toml;
"alacritty/solarized-light.toml".source = xdg-configs/alacritty/solarized-light.toml;
"swaylock/config".source = xdg-configs/swaylock/config;
"fontconfig/conf.d/52-default-fonts.conf".source = xdg-configs/fontconfig/52-default-fonts.conf;
};
xdg.mimeApps = {
enable = true;
defaultApplications = {
"x-scheme-handler/term-at" = ["term-at-scheme-handler.desktop"];
"x-scheme-handler/github" = ["github-scheme-handler.desktop"];
# manually manage chrome's defaults
"text/html" = ["google-chrome-unstable.desktop"];
"x-scheme-handler/http" = ["google-chrome-unstable.desktop"];
"x-scheme-handler/https" = ["google-chrome-unstable.desktop"];
"x-scheme-handler/about" = ["google-chrome-unstable.desktop"];
"x-scheme-handler/unknown" = ["google-chrome-unstable.desktop"];
};
};
xdg.desktopEntries = {
term-at-scheme-handler = {
name = "term-at Scheme Handler";
exec = "${term-at-opener}/bin/term-at.sh %u";
type = "Application";
terminal = false;
startupNotify = false;
mimeType = [ "x-scheme-handler/term-at" ];
};
github-scheme-handler = {
name = "github Scheme Handler";
exec = "${github-opener}/bin/open-github.nu %u";
type = "Application";
terminal = false;
startupNotify = false;
mimeType = [ "x-scheme-handler/github" ];
};
};
# You can also manage environment variables but you will have to manually
# source
#
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
#
# or
#
# /etc/profiles/per-user/directxman12/etc/profile.d/hm-session-vars.sh
#
# if you don't want to manage your shell through Home Manager.
home.sessionVariables = {
# already set below by programs.neovim
# EDITOR = "vim";
};
fonts.fontconfig.enable = true;
#
# programs
#
# git
programs.git = {
enable = true;
userEmail = "directxman12+gh@gmail.com";
userName = "Solly Ross";
extraConfig = {
init.defaultBranch = "main";
safe.directory = ["/etc/nixos"];
};
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}