Compare commits
2 Commits
fe4cc259f8
...
cd80c21d67
Author | SHA1 | Date |
---|---|---|
Whovian NTSN | cd80c21d67 | |
Whovian NTSN | e136b6ed0b |
|
@ -128,7 +128,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
nix-index = {
|
nix-index = {
|
||||||
enable = true;
|
enable = false;
|
||||||
};
|
};
|
||||||
ripgrep = {
|
ripgrep = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -3,23 +3,10 @@
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
pkgs.file
|
pkgs.file
|
||||||
pkgs.xterm
|
pkgs.xterm
|
||||||
/*
|
# `agenix` is currently added via
|
||||||
`agenix` is currently added via
|
# "<config>.nixos-wsl.modules.environment.systemPackages"
|
||||||
"nixos#nixosConfigurations.nixos-wsl.modules.environment.systemPackages"
|
|
||||||
*/
|
|
||||||
# agenix.packages.x86_64-linux.default
|
|
||||||
];
|
];
|
||||||
|
|
||||||
/*
|
|
||||||
documentation = {
|
|
||||||
nixos = {
|
|
||||||
includeAllModules = true;
|
|
||||||
};
|
|
||||||
man = {
|
|
||||||
generateCaches = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config = {
|
config = {
|
||||||
|
@ -34,10 +21,10 @@
|
||||||
nano = {
|
nano = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
/*
|
|
||||||
I haven't figured out how to get `cdemu` properly working in WSL, so I'm
|
# I haven't figured out how to get `cdemu` properly working (in WSL), so
|
||||||
just going to leave it as `programs.cdemu.enable = false;` for now.
|
# I'm just going to leave it as `programs.cdemu.enable = false;` for now.
|
||||||
*/
|
|
||||||
cdemu = {
|
cdemu = {
|
||||||
enable = false;
|
enable = false;
|
||||||
group = "cdrom";
|
group = "cdrom";
|
||||||
|
@ -45,4 +32,21 @@
|
||||||
image-analyzer = false;
|
image-analyzer = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# `documentation.man.generateCaches` seems to be mainly useful for `whatis`,
|
||||||
|
# but I couldn't really get it working well.
|
||||||
|
# From what I can tell, it depends on a package being installed via
|
||||||
|
# `environment.systemPackages`, *and* for that package to have a manpage.
|
||||||
|
# That's kinda useless for me since I've been mostly installing stuff via
|
||||||
|
# `home-manager`, sooooooooo...
|
||||||
|
/*
|
||||||
|
documentation = {
|
||||||
|
nixos = {
|
||||||
|
includeAllModules = true;
|
||||||
|
};
|
||||||
|
man = {
|
||||||
|
generateCaches = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,8 @@
|
||||||
"wheel"
|
"wheel"
|
||||||
"cdrom"
|
"cdrom"
|
||||||
];
|
];
|
||||||
initialPassword = "abcde"; # I need to log in somehow
|
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
|
initialPassword = "abcde"; # I need to log in somehow
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue