massive restructure of my org file

ops

sakljdask
This commit is contained in:
2023-09-02 19:42:21 -06:00
parent e60a8909ea
commit 49280cf576
3 changed files with 353 additions and 346 deletions

View File

@@ -4,9 +4,10 @@
{ config, lib, pkgs, modulesPath, ... }:
let
unstable_tarball =
builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master";
unstable = import unstable_tarball { config = config.nixpkgs.config; };
unstable = import
(builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master") {
config = config.nixpkgs.config;
};
in {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot = {
@@ -165,13 +166,11 @@ in {
};
cpu.intel.updateMicrocode = lib.mkDefault true;
bluetooth.enable = true;
# huion driver
# opentabletdriver = {
# enable = true;
# package = unstable.opentabletdriver;
# daemon.enable = false;
# };
# nvidia driver
nvidia.modesetting.enable = true;
opengl = {
enable = true;
@@ -186,7 +185,4 @@ in {
];
};
};
# hardware.cpu.intel.updateMicrocode =
# lib.mkDefault config.hardware.enableRedistributableFirmware;
}