nix-config/modules/nix/default.nix
smayzy 923232aed9
All checks were successful
nix flake show / show-flake (push) Successful in 35s
add desmume
2025-08-02 17:28:42 +02:00

57 lines
917 B
Nix

{ lib, ... }:
{
imports = [
./audio
./base-cli
./browser
./cad
./comm
./de
./displaymanager
./ebook
./emulator
./flatpak
./games
./groups
./hardware
./ide
./notif
./office
./rice
./shell
./terminal
./utilities
./virt
./vpn
./wm
];
# Timzone and locales (same for all machines so I put it here)
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "Europe/Paris";
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-unwrapped"
"steam-run"
"obsidian"
"nvidia-x11"
"nvidia-settings"
];
services.xserver.xkb = {
layout = "fr";
variant = "";
};
console.keyMap = "fr";
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
networking.networkmanager.enable = true;
}