Move some comments around again.
This commit is contained in:
parent
3bc7bddb25
commit
ac341f613a
2 changed files with 22 additions and 9 deletions
|
@ -37,9 +37,6 @@
|
||||||
*/
|
*/
|
||||||
stateVersion = "23.05"; # Please read the comment before changing.
|
stateVersion = "23.05"; # Please read the comment before changing.
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
|
||||||
# environment.
|
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
# Probably not needed for a module?
|
# Probably not needed for a module?
|
||||||
# programs.home-manager.enable = true;
|
# programs.home-manager.enable = true;
|
||||||
|
|
|
@ -10,12 +10,14 @@
|
||||||
bat = {
|
bat = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
enableZshIntegration = true;
|
enableZshIntegration = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Whovian9369";
|
userName = "Whovian9369";
|
||||||
|
@ -26,15 +28,19 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
jq = {
|
jq = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nix-index = {
|
nix-index = {
|
||||||
enable = false;
|
enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
ripgrep = {
|
ripgrep = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
zsh = {
|
zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# Honestly unsure if I should be using `programs.zsh.envExtra` or
|
# Honestly unsure if I should be using `programs.zsh.envExtra` or
|
||||||
|
@ -53,8 +59,12 @@
|
||||||
theme = "bira";
|
theme = "bira";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# The home.packages option allows you to install Nix packages into your
|
||||||
|
# environment.
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs._7zz
|
pkgs._7zz
|
||||||
pkgs.bat
|
pkgs.bat
|
||||||
|
@ -97,21 +107,27 @@
|
||||||
/*
|
/*
|
||||||
Disabled
|
Disabled
|
||||||
pkgs.binutils
|
pkgs.binutils
|
||||||
# Instead just do `nix shell nixpkgs#binutils -c strings -- INPUT.ext > INPUT.ext.strings
|
# Just use "nix shell nixpkgs#binutils -c strings -- INPUT"
|
||||||
pkgs.mpv
|
pkgs.mpv
|
||||||
|
# Not needed on WSL
|
||||||
pkgs.terminator
|
pkgs.terminator
|
||||||
pkgs.yt-dlp
|
# Not needed on WSL, even though I'd like it on WSL.
|
||||||
pkgs.p7zip
|
pkgs.p7zip
|
||||||
# Replaced in favour of nixpkgs#_7zz
|
# Replaced in favour of nixpkgs#_7zz
|
||||||
Disabled
|
pkgs.yt-dlp
|
||||||
|
# Not needed on WSL
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
# It is sometimes useful to fine-tune packages, for example, by applying
|
# It is sometimes useful to fine-tune packages, for example, by applying
|
||||||
# overrides. You can do that directly here, just don't forget the
|
# overrides. You can do that directly here, just don't forget the
|
||||||
# parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
# parentheses.
|
||||||
# fonts?
|
# Maybe you want to install Nerd Fonts with a limited number of fonts?
|
||||||
(pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
(pkgs.nerdfonts.override {
|
||||||
|
fonts = [
|
||||||
|
"FantasqueSansMono"
|
||||||
|
];
|
||||||
|
})
|
||||||
*/
|
*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue