32 lines
578 B
Nix
32 lines
578 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../../modules
|
|
];
|
|
|
|
osbmModules = {
|
|
blockYoutube = false;
|
|
blockTwitter = true;
|
|
blockBluesky = false;
|
|
enableKDE = true;
|
|
enableAarch64Emulation = true;
|
|
enableSound = true;
|
|
};
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "tartarus"; # Define your hostname.
|
|
|
|
# Enable networking
|
|
networking.networkmanager.enable = true;
|
|
|
|
system.stateVersion = "24.05"; # lalalalala
|
|
}
|