Change how I have `screen` installed.

This commit is contained in:
Whovian NTSN 2024-06-02 02:08:46 -04:00
parent 82c0df0a05
commit 4ed47ea6e9
2 changed files with 9 additions and 3 deletions

View File

@ -113,7 +113,6 @@ in
pkgs.pyrosimple pkgs.pyrosimple
pkgs.python3 pkgs.python3
pkgs.quickbms pkgs.quickbms
pkgs.screen
pkgs.sshfs pkgs.sshfs
pkgs.unrar-wrapper pkgs.unrar-wrapper
pkgs.wget pkgs.wget
@ -142,6 +141,8 @@ in
# Replaced in favour of nixpkgs#_7zz # Replaced in favour of nixpkgs#_7zz
pkgs.rclone pkgs.rclone
# Replaced with my_packages.new_rclone which is a patched build. # Replaced with my_packages.new_rclone which is a patched build.
pkgs.screen
# Replaced with System `programs.screen.enable`
pkgs.terminator pkgs.terminator
# Not needed on WSL, even though I'd like it on WSL sometimes. # Not needed on WSL, even though I'd like it on WSL sometimes.
pkgs.yt-dlp pkgs.yt-dlp

View File

@ -22,15 +22,20 @@
enable = true; enable = true;
}; };
# I haven't figured out how to get `cdemu` properly working (in WSL), so
# I'm just going to leave it as `programs.cdemu.enable = false;` for now.
cdemu = { cdemu = {
# I haven't figured out how to get `cdemu` properly working (in WSL), so
# I'm just going to leave it as `programs.cdemu.enable = false;` for now.
enable = false; enable = false;
group = "cdrom"; group = "cdrom";
gui = false; gui = false;
image-analyzer = false; image-analyzer = false;
}; };
screen = {
enable = true;
};
}; };
# `documentation.man.generateCaches` seems to be mainly useful for `whatis`, # `documentation.man.generateCaches` seems to be mainly useful for `whatis`,