vsc-dotfiles/nixos/flake.nix
Thomas Lovén c256593693 Simplify caps-lock remapping
It turns out that all other methods I have tried overrides disabling the
touchpad while typing. Only interception-tools seems to work.
2024-12-26 20:15:06 +01:00

22 lines
421 B
Nix

{
description = "My nixos config";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
};
outputs = { self, nixpkgs, ... } @ inputs:
let
inherit (self) outputs;
system = "x86_64-linux";
in
{
nixosConfigurations = {
macbook = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [ ./nixos/configuration.nix ];
};
};
};
}