This commit is contained in:
2026-06-30 10:59:25 +09:00
parent 562e5d0e97
commit d0c05a7b85
16 changed files with 196 additions and 65 deletions
+12 -2
View File
@@ -1,5 +1,10 @@
{ config, lib, pkgs, ... }:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
};
networking.wireless.iwd.enable = true;
networking.networkmanager = {
enable = lib.mkDefault true;
@@ -28,10 +33,15 @@
layout = "my-sym";
variant = "my-sym";
extraLayouts."my-sym" = {
description = "English (US) with modifed right side keys";
description = "English (US) with modifed keys";
languages = [ "eng" ];
symbolsFile = "${pkgs.my-ricing-assets}/usr/local/share/xkb/symbols/my-sym";
};
extraLayouts."my-sym-dvp" = {
description = "English (US, Programmer Dvorak) with modifed keys";
languages = [ "eng" ];
symbolsFile = "${pkgs.my-ricing-assets}/usr/local/share/xkb/symbols/my-sym-dvp";
};
};
services.pipewire = {
@@ -139,7 +149,7 @@
log-lines = 50;
auto-optimise-store = true;
experimental-features = [ "nix-command" "flakes" ];
substituters = [
substituters = lib.mkForce [
"https://cache.nixos.org"
];
accept-flake-config = true;