More logical name
This commit is contained in:
parent
8283068de3
commit
ba15898455
|
@ -1,8 +1,8 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.audio;
|
let cfg = config.voidconf.audio;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.audio = {
|
options.voidconf.audio = {
|
||||||
enable = mkEnableOption "Enable all the audio daemons";
|
enable = mkEnableOption "Enable all the audio daemons";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.fontConfig;
|
let cfg = config.voidconf.fontConfig;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.fontConfig = {
|
options.voidconf.fontConfig = {
|
||||||
enable = mkEnableOption "Enable opinionated font configuration";
|
enable = mkEnableOption "Enable opinionated font configuration";
|
||||||
joyPixels = mkEnableOption "Enables the JoyPixels font";
|
joyPixels = mkEnableOption "Enables the JoyPixels font";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.graphics;
|
let cfg = config.voidconf.graphics;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.graphics ={
|
options.voidconf.graphics ={
|
||||||
defaultSettings.enable = mkEnableOption "Enables some basic graphical settings";
|
defaultSettings.enable = mkEnableOption "Enables some basic graphical settings";
|
||||||
nvidia = {
|
nvidia = {
|
||||||
enable = mkEnableOption "Enables Nvidia settings";
|
enable = mkEnableOption "Enables Nvidia settings";
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.kernelTweaks;
|
let cfg = config.voidconf.kernelTweaks;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.kernelTweaks = {
|
options.voidconf.kernelTweaks = {
|
||||||
enable = mkEnableOption "Enables kernel tweaks";
|
enable = mkEnableOption "Enables kernel tweaks";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.nixSettings;
|
let cfg = config.voidconf.nixSettings;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.nixSettings = {
|
options.voidconf.nixSettings = {
|
||||||
gc = {
|
gc = {
|
||||||
automatic = mkOption {
|
automatic = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.prometheus;
|
let cfg = config.voidconf.prometheus;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.prometheus = {
|
options.voidconf.prometheus = {
|
||||||
enable = mkEnableOption "Enable prometheus node";
|
enable = mkEnableOption "Enable prometheus node";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.services;
|
let cfg = config.voidconf.services;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.services = {
|
options.voidconf.services = {
|
||||||
|
|
||||||
flatpak = {
|
flatpak = {
|
||||||
enable = mkEnableOption "Enables basic flatpak configuration";
|
enable = mkEnableOption "Enables basic flatpak configuration";
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.vim;
|
let cfg = config.voidconf.vim;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.vim = {
|
options.voidconf.vim = {
|
||||||
enable = mkEnableOption "Enables opinionated vim configuration";
|
enable = mkEnableOption "Enables opinionated vim configuration";
|
||||||
enableNvim = mkEnableOption "Enables neovim and alias";
|
enableNvim = mkEnableOption "Enables neovim and alias";
|
||||||
setEnvVar = mkOption {
|
setEnvVar = mkOption {
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.xconfig;
|
let cfg = config.voidconf.xconfig;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.xconfig = {
|
options.voidconf.xconfig = {
|
||||||
|
|
||||||
enable = mkEnableOption "Enables opinionated xorg config";
|
enable = mkEnableOption "Enables opinionated xorg config";
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.voidcruiser.zsh;
|
let cfg = config.voidconf.zsh;
|
||||||
in {
|
in {
|
||||||
options.voidcruiser.zsh = {
|
options.voidconf.zsh = {
|
||||||
enable = mkEnableOption "Enables opinionated zsh configuration";
|
enable = mkEnableOption "Enables opinionated zsh configuration";
|
||||||
skim.enable = mkEnableOption "Enables skim support for shell history";
|
skim.enable = mkEnableOption "Enables skim support for shell history";
|
||||||
highlightStyle = mkOption {
|
highlightStyle = mkOption {
|
||||||
|
|
Loading…
Reference in a new issue