diff --git a/.config/nix/modules/efi.nix b/.config/nix/modules/efi.nix index 6aa4b51..98d85f8 100644 --- a/.config/nix/modules/efi.nix +++ b/.config/nix/modules/efi.nix @@ -1,4 +1,4 @@ -{ config, pkgs, inputs, ... } +{ config, pkgs, inputs, ... }: { # SystemD-boot is good enough diff --git a/.config/nix/modules/hypr.nix b/.config/nix/modules/hypr.nix index 85edaca..8c582d0 100644 --- a/.config/nix/modules/hypr.nix +++ b/.config/nix/modules/hypr.nix @@ -1,4 +1,4 @@ -{ config, pkgs, inputs, ... } +{ config, pkgs, inputs, ... }: { # Hyprland looks nice so I'm using it diff --git a/.config/nix/modules/kanata.nix b/.config/nix/modules/kanata.nix index ed5914a..e884650 100644 --- a/.config/nix/modules/kanata.nix +++ b/.config/nix/modules/kanata.nix @@ -25,7 +25,10 @@ devices = [ "/dev/input/by-path/platform-i8042-serio-0-event-kbd" ]; - configFile = builtins.readFile ../../kanata/conf.kbd; + configFile = builtins.fetchurl { + url = https://git.luluslly.xyz/lulusilly/dotfiles/raw/branch/master/.config/kanata/conf.kbd; + sha256 = ""; + }; }; }; };