This commit is contained in:
2026-02-05 20:10:18 +09:00
parent 26e95b8878
commit 37f4f2362c
5 changed files with 11 additions and 3 deletions

View File

@@ -20,7 +20,9 @@ in
nixpkgs.config.allowUnfree = true;
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = 1;
};
#boot.loader.grub.device = "/dev/nvme1n1p1";
boot.loader = {
@@ -39,7 +41,6 @@ in
networking.hostName = "haskell"; # Define your hostname.
programs.steam.enable = true;
programs.fish.enable = true;
@@ -77,7 +78,7 @@ in
# Define a user account. Don't forget to set a password with passwd.
users.users.allen = {
isNormalUser = true;
extraGroups = [ "wheel" "podman" ]; # Enable sudo for the user.
extraGroups = [ "wheel" "podman" "dialout" ]; # Enable sudo for the user.
shell = pkgs.fish;
home = "/home/allen";
packages = with pkgs; [ tree ];