Compare commits
No commits in common. "a62cb2bab1f5deb7140191041feb87199da29138" and "f8e09d26d11397a577491a504a7d08a7b66029d7" have entirely different histories.
a62cb2bab1
...
f8e09d26d1
|
@ -50,7 +50,6 @@
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
hardware.opengl.driSupport32Bit = true;
|
hardware.opengl.driSupport32Bit = true;
|
||||||
|
|
||||||
beatific.extraPrograms = true;
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
libreoffice
|
libreoffice
|
||||||
|
|
|
@ -26,12 +26,6 @@ in {
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
extraPrograms = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
description = "Additional default programs";
|
|
||||||
default = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Groups of related defaults can be disabled by flipping off the switches here:
|
# Groups of related defaults can be disabled by flipping off the switches here:
|
||||||
# beatific.defaults.${category} = false;
|
# beatific.defaults.${category} = false;
|
||||||
# They default to true because the point is to do these things by default.
|
# They default to true because the point is to do these things by default.
|
||||||
|
@ -90,8 +84,6 @@ in {
|
||||||
curl
|
curl
|
||||||
duf
|
duf
|
||||||
file # File type inspector
|
file # File type inspector
|
||||||
htmlq # jq for html
|
|
||||||
jq # jq for json
|
|
||||||
nebula
|
nebula
|
||||||
psmisc # provides killall
|
psmisc # provides killall
|
||||||
python3
|
python3
|
||||||
|
@ -113,14 +105,6 @@ in {
|
||||||
environment.variables.EDITOR = mkOverride 999 "vim";
|
environment.variables.EDITOR = mkOverride 999 "vim";
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf cfg.extraPrograms {
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
calibre # provides ebook-convert
|
|
||||||
imagemagick # image convertion cli
|
|
||||||
tesseract # OCR engine
|
|
||||||
];
|
|
||||||
})
|
|
||||||
|
|
||||||
(mkIf cfg.defaults.ssh {
|
(mkIf cfg.defaults.ssh {
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
services.openssh.banner = let
|
services.openssh.banner = let
|
||||||
|
|
Loading…
Reference in New Issue