This commit is contained in:
wyj
2024-05-21 06:37:47 -04:00
parent d8d53e3ffb
commit 02069036d1
12 changed files with 83 additions and 123 deletions
+1 -4
View File
@@ -1,6 +1,3 @@
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelParams = [ "psmouse.synaptics_intertouch=0" ];
boot.loader.grub.device = "nodev";
}
+1
View File
@@ -11,6 +11,7 @@
./hyprland.nix
./trim.nix
./bluetooth.nix
./services.nix
./nixvim/nixvim.nix
];
}
+3
View File
@@ -0,0 +1,3 @@
{
services.openssh.enable = true;
}
+3 -3
View File
@@ -4,14 +4,14 @@
users = {
defaultUserShell = pkgs.zsh;
users.amper = {
users.wyj = {
isNormalUser = true;
description = "Ampersand";
description = "Yingjie Wang";
extraGroups = [ "networkmanager" "wheel" "input" "libvirtd" ];
packages = with pkgs; [];
};
};
# Enable automatic login for the user.
services.getty.autologinUser = "amper";
#services.getty.autologinUser = "amper";
}