created list of tech debt built up
This commit is contained in:
parent
e9645905f4
commit
b1053ad5e2
7
debt.txt
Normal file
7
debt.txt
Normal 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
|
|
@ -20,8 +20,6 @@
|
|||
isNormalUser = true;
|
||||
isThinInstallation = true;
|
||||
};
|
||||
users.ester.isNormalUser = false;
|
||||
users.eve.isNormalUser = false;
|
||||
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
|
|
|
@ -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"];
|
||||
|
|
Loading…
Reference in a new issue