This commit is contained in:
LunarAkai 2025-03-13 22:02:11 +01:00
commit 419acfce64
5 changed files with 229 additions and 5 deletions

View file

@ -15,6 +15,7 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# mask dev-tpmrm0.device
systemd.services.dev-tpmrm0.wantedBy = lib.mkForce[ ];
@ -96,6 +97,7 @@
# thunderbird
gnome-software
git
neovim
];
};
@ -110,6 +112,7 @@
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
gnome-menus
];
# Some programs need SUID wrappers, can be configured further or are
@ -123,6 +126,8 @@
# ssh agent
programs.ssh.startAgent = true;
hardware.ckb-next.enable = true;
# dynamic linking
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
@ -146,4 +151,10 @@
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.11"; # Did you read the comment?
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
};
}