Compare commits

..

No commits in common. "30a491024b435662b4ed3dfabcbeb0b92d636fed" and "563e2612289af81231237f7b8192f6d2e049e7f6" have entirely different histories.

3 changed files with 7 additions and 9 deletions

View file

@ -154,8 +154,6 @@ in
hardware.bluetooth.package = pkgs.bluez5-experimental; # Why do we need experimental...?
hardware.bluetooth.settings.General.Experimental = true;
services.blueman.enable = true; # For a GUI
# ZRAM
zramSwap.enable = true;
## Users
users.users.${cfg.username} = {

View file

@ -29,7 +29,7 @@
};
swapDevices = [
{ device = "/var/swapfile"; size = 32 * 1024; priority = 10; }
{ device = "/var/swapfile"; size = 32 * 1024; }
];
boot.blacklistedKernelModules = [

View file

@ -3,23 +3,23 @@ let
src = fetchFromGitHub {
owner = "phaazon";
repo = "kak-tree-sitter";
rev = "facf55f77171ae0d33332c6d54b5492e544f9ca1";
hash = "sha256-XMHgP4SO2HT6NthQkKUwU1rOwVFXDp7FsM99zqM4Q04=";
rev = "fcc4ec36385ee5ce1378dae1b3eca4288619ff0d";
sha256 = "sha256-a2EBTe6SucxHHMhElhnvyf3b6AOj5CyhHE7RHVx/Ulc=";
};
kak-tree-sitter = rustPlatform.buildRustPackage rec {
inherit src;
pname = "kak-tree-sitter";
version = "0.4.3";
cargoHash = "sha256-JvMcwdllq0dacceZsI14cCnV7aW7wmU3h/Y9SAwHVtM=";
version = "0.3.0";
cargoSha256 = "sha256-eDkIN7uzy2euywsjm3152R36B181Jj9KqnHsFDjyxhI=";
cargoBuildOptions = [ "--package" "kak-tree-sitter" ];
};
ktsctl = rustPlatform.buildRustPackage rec {
inherit src;
name = "ktsctl";
version = "0.3.1";
cargoHash = "sha256-pyCUiekj79euOtS43mu9Fti+HZizaV069068h61uOT8=";
version = "0.2.0";
cargoSha256 = "sha256-k16nuC50n9TSiGdkzP58gr6zpFR/Jh21Bw33SRWRi8U=";
cargoBuildOptions = [ "--package" "ktsctl" ];