nixos-configs/nixosConfigurations/ronja-pc/default.nix

39 lines
851 B
Nix
Raw Normal View History

{
config,
pkgs,
2025-12-11 22:13:32 +01:00
self,
...
}:
2025-04-13 21:40:52 +02:00
{
imports = [
2025-09-14 13:09:37 +02:00
./hardware.nix
2025-12-11 22:13:32 +01:00
self.nixosModules.user-ronja
self.nixosModules.gnome
self.nixosModules.steam
self.nixosModules.wine-gaming
2026-02-01 12:23:07 +01:00
self.nixosModules.muede-desktop-settings
2025-04-13 21:40:52 +02:00
];
config = {
# Configure keymap in X11
services.xserver.xkb = {
layout = "de";
variant = "";
};
# Configure console keymap
console.keyMap = "de";
# List packages installed in system profile. To search, run:
# $ nix search wget
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
];
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];};
};
2025-04-13 21:40:52 +02:00
}