mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Compare commits
No commits in common. "9568bf4a6ec24bdfd3a70c380e0e66a588ac75ab" and "fa308b408daa054011b5194e0365c983c2352258" have entirely different histories.
9568bf4a6e
...
fa308b408d
2 changed files with 4 additions and 11 deletions
|
|
@ -15,14 +15,12 @@ in {
|
|||
mods.terminal.development.enable = true;
|
||||
mods.terminal.tools.enable = true;
|
||||
mods.terminal.hr.enable = true;
|
||||
mods.terminal.gh.enable = true;
|
||||
mods.desktop.development.enable = true;
|
||||
mods.desktop.productivity.enable = true;
|
||||
mods.desktop.media.enable = true;
|
||||
mods.zen.enable = true;
|
||||
mods.obsidian.enable = true;
|
||||
mods.opencode.enable = true;
|
||||
mods.octo.enable = true;
|
||||
|
||||
# Hardware preferences
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
cfg = config.mods.unfree.nvidia;
|
||||
{ pkgs, lib, config, ... }:
|
||||
let cfg = config.mods.unfree.nvidia;
|
||||
in {
|
||||
options.mods.unfree.nvidia = {
|
||||
enable = lib.mkEnableOption {
|
||||
|
|
@ -12,7 +7,7 @@ in {
|
|||
description = "enables proprietary nvidia drivers";
|
||||
};
|
||||
packages = lib.mkOption {
|
||||
default = ["nvidia-x11" "nvidia-settings"];
|
||||
default = [ "nvidia-x11" "nvidia-settings" ];
|
||||
description = "unfree packages";
|
||||
};
|
||||
driver = lib.mkOption {
|
||||
|
|
@ -28,7 +23,7 @@ in {
|
|||
# enable32Bit = true;
|
||||
# };
|
||||
|
||||
services.xserver.videoDrivers = ["nvidia"];
|
||||
services.xserver.videoDrivers = [ "nvidia" "nvidia-dkms" ];
|
||||
|
||||
hardware.nvidia = {
|
||||
modesetting.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue