Files
Nixos/hosts/nixos/system/os.nix
T
Administrateur db4c0e1320 Switch to GNOME and Limine bootloader
Migrates the NixOS system to use GNOME as the primary desktop environment and Limine as the bootloader.

This involves removing the KDE Plasma configuration module and adding a dedicated module for Limine. Also includes a minor cleanup in the Darwin home-manager configuration.
2026-06-14 13:01:19 +02:00

36 lines
742 B
Nix
Executable File

{ ... }:
{
# System services
os.boot.limine.enable = true;
os.boot.plymouth.enable = true;
os.graphics.nvidia.enable = true;
os.audio.pipewire.enable = true;
# Networks services
os.networking.enable = true;
# Printing and sharing
os.networks.samba.enable = true;
os.networks.printing.enable = true;
# System configurations
os.keyboard.apple.enable = true;
# Flatpak configuration
os.flatpak.enable = true;
# Virtualisation Apps
os.virtualisation.cuda.enable = true;
os.virtualisation.podman.enable = true;
# Shells configurations
os.shells.gnome.enable = true;
# Terminal
programs.ssh.enableAskPassword = false; # No-window git push fix
# System version
system.stateVersion = "25.11";
}