mirror of
https://codeberg.org/muon/home.git
synced 2026-03-08 03:25:16 +00:00
Fix errors
This commit is contained in:
parent
85c51ff9d0
commit
9b930ea0e0
5 changed files with 12 additions and 16 deletions
|
|
@ -1,5 +1,10 @@
|
|||
{ pkgs, lib, osConfig, sources, ... }:
|
||||
let cfg = osConfig.mods;
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
cfg = osConfig.mods;
|
||||
in {
|
||||
# Modules
|
||||
mods.xdg.enable = true;
|
||||
|
|
@ -12,6 +17,7 @@ in {
|
|||
mods.desktop.development.enable = false;
|
||||
mods.desktop.productivity.enable = false;
|
||||
mods.desktop.media.enable = false;
|
||||
mods.obsidian.enable = false;
|
||||
|
||||
# Hardware preferences
|
||||
|
||||
|
|
@ -37,10 +43,8 @@ in {
|
|||
};
|
||||
profiles.default = {
|
||||
fingerprint = {
|
||||
"${cfg.monitors.primary.name}" =
|
||||
"00ffffffffffff004c2d850433324d431a120103803420782aee91a3544c99260f5054bfef80714f8100814081809500a940b30001011a3680a070381f403020350006202000001a000000fd00384b1e5111000a202020202020000000fc0053796e634d61737465720a2020000000ff004831414b3530303030300a202000e9";
|
||||
"${cfg.monitors.secondary.name}" =
|
||||
"00ffffffffffff00410cca140101010134100103804728788a288e9e5548972416484badce0031594559615981800101010101010101a91a00a05000163030203700c48e21000018662150b051001b3040703600c48e21000018000000fc005068696c697073545620283529000000fd002f551f500e000a2020202020200156020323714f930414051f10121103020116150706230907078301000066030c00100080011d00bc52d01e20b8285540c48e2100001a011d007251d01e206e285500c48e2100001e011d80d0721c1620102c2580c48e2100009e011d8018711c1620582c2500c48e2100009ef33980d072382d40102c4580c48e2100001e0000f2";
|
||||
"${cfg.monitors.primary.name}" = "00ffffffffffff004c2d850433324d431a120103803420782aee91a3544c99260f5054bfef80714f8100814081809500a940b30001011a3680a070381f403020350006202000001a000000fd00384b1e5111000a202020202020000000fc0053796e634d61737465720a2020000000ff004831414b3530303030300a202000e9";
|
||||
"${cfg.monitors.secondary.name}" = "00ffffffffffff00410cca140101010134100103804728788a288e9e5548972416484badce0031594559615981800101010101010101a91a00a05000163030203700c48e21000018662150b051001b3040703600c48e21000018000000fc005068696c697073545620283529000000fd002f551f500e000a2020202020200156020323714f930414051f10121103020116150706230907078301000066030c00100080011d00bc52d01e20b8285540c48e2100001a011d007251d01e206e285500c48e2100001e011d80d0721c1620102c2580c48e2100009e011d8018711c1620582c2500c48e2100009ef33980d072382d40102c4580c48e2100001e0000f2";
|
||||
};
|
||||
config = {
|
||||
"${cfg.monitors.primary.name}" = cfg.monitors.primary.config;
|
||||
|
|
|
|||
|
|
@ -12,11 +12,6 @@ in {
|
|||
options.mods.terminal.development.enable =
|
||||
lib.mkEnableOption "enables cli editor";
|
||||
|
||||
options.mods.obsidian.enable =
|
||||
lib.mkEnableOption "enables obsidian";
|
||||
|
||||
imports = [inputs.nvf.homeManagerModules.default];
|
||||
|
||||
config = lib.mkIf config.mods.terminal.development.enable {
|
||||
mods = {
|
||||
nvim.enable = true;
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
enable = true;
|
||||
settings = {
|
||||
vim = {
|
||||
viAlias = false;
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
lsp = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
options.mods.obsidian.enable =
|
||||
lib.mkEnableOption "enables obsidian";
|
||||
|
||||
config = lib.mkIf config.obsidian.enable {
|
||||
config = lib.mkIf config.mods.obsidian.enable {
|
||||
programs.nvf.settings.vim.notes.obsidian = {
|
||||
enable = true;
|
||||
setupOpts = {
|
||||
|
|
@ -118,6 +118,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
todo-comments.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,8 +12,6 @@ in {
|
|||
options.mods.zellij.enable =
|
||||
lib.mkEnableOption "enables zellij";
|
||||
|
||||
imports = [inputs.nvf.homeManagerModules.default];
|
||||
|
||||
config = lib.mkIf config.mods.terminal.development.enable {
|
||||
programs.zellij = {
|
||||
settings = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue