1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 12:21:08 +01:00

Toggle keyboard with both control keys

This commit is contained in:
Kierán Meinhardt
2019-01-31 23:39:09 +01:00
parent 9467161729
commit 10e1b32dc3
4 changed files with 1 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
{ config, lib, pkgs, ... }:
{
imports = [ ./config.nix ];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [ "cma=32M" ];
fileSystems = {
"/boot" = {
device = "/dev/disk/by-label/NIXOS_BOOT";
fsType = "vfat";
};
"/" = {
device = "/dev/disk/by-label/NIXOS_SD";
fsType = "ext4";
};
};
swapDevices = [ { device = "/swapfile"; size = 1024; } ];
}