cleanup script fix and toothpick modules fix

This commit is contained in:
cnst
2024-09-15 17:54:20 +02:00
parent ef91994c62
commit b408f513d0
8 changed files with 305 additions and 201 deletions

View File

@@ -1,3 +0,0 @@
{
programs.dconf.enable = true;
}

View File

@@ -1,17 +0,0 @@
{
services.xserver = {
enable = true;
videoDrivers = ["amdgpu"];
# xkb = {
# extraLayouts.hhkbse = {
# description = "HHKBse by cnst";
# languages = ["se"];
# symbolsFile = /home/cnst/.nix-config/nixos/hosts/cnix/xkb/symbols/hhkbse;
# };
# layout = "hhkbse";
# # dir = "/home/cnst/.nix-config/nixos/xkb";
# variant = "";
# options = "lv3:rwin_switch";
# };
};
}

View File

@@ -1,18 +0,0 @@
{hostConfig, ...}: let
path = "${hostConfig}/cnix/xkb/symbols";
in {
services.xserver = {
enable = true;
videoDrivers = ["amdgpu"];
xkb = {
extraLayouts.hhkbse = {
description = "HHKBse by cnst";
languages = ["se"];
symbolsFile = "${path}/hhkbse";
};
layout = "hhkbse";
variant = "";
options = "lv3:rwin_switch";
};
};
}

View File

@@ -1,7 +0,0 @@
{
services.xserver = {
enable = true;
videoDrivers = ["nvidia"];
xkb.layout = "se";
};
}