Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-02-25 17:16:10 +05:30
parent e0a9283d2e
commit ed71d6459c
5 changed files with 17 additions and 27 deletions

View File

@@ -17,7 +17,7 @@
services = { services = {
openssh = { openssh = {
enable = true; enable = true;
ports = [22 22001]; ports = [ 22 22001 ];
}; };
postgresql = { postgresql = {
enable = true; enable = true;

View File

@@ -6,5 +6,6 @@
extraPortals = [ extraPortals = [
inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland
]; ];
config.common.default = "*";
}; };
} }

View File

@@ -27,15 +27,8 @@
enable = true; enable = true;
}; };
}; };
extraLayouts = { xkb.layout = "us";
colemak = { xkb.variant = "colemak_dh"; # trying to ditch DHz now
description = "Colemak Layouts";
languages = [ "eng" ];
symbolsFile = ./colemak;
};
};
layout = "us";
xkbVariant = "colemak_dh"; # trying to ditch DHz now
autoRepeatDelay = 320; autoRepeatDelay = 320;
autoRepeatInterval = 30; autoRepeatInterval = 30;
}; };

View File

@@ -1,7 +1,5 @@
{ inputs, self, ... }: { inputs, self, ... }:
{ {
imports = [
{
config._module.args.globalArgs = { config._module.args.globalArgs = {
_module.args = { _module.args = {
inherit inputs self; inherit inputs self;
@@ -12,6 +10,4 @@
}; };
}; };
}; };
}
];
} }