1
0
Fork 0

Mizuki fixes

This commit is contained in:
Avery 2025-06-23 13:06:32 +00:00
parent 38bfb70f8c
commit b69884b8b9
Signed by: Avery
GPG key ID: B684FD451B692E04
2 changed files with 7 additions and 13 deletions

View file

@ -1,14 +1,11 @@
{ pkgs, ... }: { { lib, pkgs, ... }: {
imports = [ ./development.nix ];
home = { home = {
username = "avery"; stateVersion = lib.mkForce "24.11";
homeDirectory = "/home/avery";
stateVersion = "24.11";
packages = with pkgs; [ python3 ]; packages = with pkgs; [ python3 ];
sessionVariables.EDITOR = "nvim";
}; };
programs.home-manager.enable = true; programs.zsh.initContent = lib.mkAfter ''
programs.zsh.initExtra = '' setxkbmap -layout es -variant dvorak > /dev/null
setxkbmap -layout es -variant dvorak
WAYLAND_DISPLAY="wayland-1" WAYLAND_DISPLAY="wayland-1"
''; '';
} }

View file

@ -1,5 +1,7 @@
{ lib, pkgs, ... }: { { lib, pkgs, ... }: {
boot.kernel.sysctl."vm.overcommit_memory" = 1;
environment.shells = with pkgs; [ zsh ]; environment.shells = with pkgs; [ zsh ];
environment.systemPackages = with pkgs; [ xorg.setxkbmap ]; environment.systemPackages = with pkgs; [ xorg.setxkbmap ];
@ -26,11 +28,6 @@
wheelNeedsPassword = true; wheelNeedsPassword = true;
}; };
services.mysql = {
enable = true;
package = pkgs.mysql84;
};
users = { users = {
defaultUserShell = pkgs.zsh; defaultUserShell = pkgs.zsh;
users.avery.extraGroups = [ "wheel" ]; users.avery.extraGroups = [ "wheel" ];