created list of tech debt built up

This commit is contained in:
Leyla Becker 2024-09-03 00:31:54 -05:00
parent e9645905f4
commit b1053ad5e2
3 changed files with 8 additions and 5 deletions

7
debt.txt Normal file
View file

@ -0,0 +1,7 @@
1. Open GL?
2. allowUnfree should be dynamically enabled by the users whenever they need them
3. graphics driver things should prob be in the hardware-configuration.nix
4. what does `boot.kernelModules = [ "sg" ]` do?
5. sops.age.keyFile should not just be hard coded to leyla?
6. openssh configuration for server
7. isThinInstallation -> isThinUser

View file

@ -20,8 +20,6 @@
isNormalUser = true;
isThinInstallation = true;
};
users.ester.isNormalUser = false;
users.eve.isNormalUser = false;
boot.loader.grub = {
enable = true;

View file

@ -44,9 +44,7 @@
nixpkgs.config.allowUnfree = true;
# Enable OpenGL
hardware.opengl = {
enable = true;
};
hardware.graphics.enable = true;
# Load nvidia driver for Xorg and Wayland
services.xserver.videoDrivers = ["nvidia"];