2024-06-13 11:57:38 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
networking.hostName = "mobile-nixos";
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Opinionated defaults
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Use Network Manager
|
|
|
|
|
networking.wireless.enable = false;
|
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
|
|
|
|
|
|
# Use PulseAudio
|
|
|
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
|
|
|
|
|
|
# Enable Bluetooth
|
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
|
|
|
|
|
|
# Bluetooth audio
|
|
|
|
|
hardware.pulseaudio.package = pkgs.pulseaudioFull;
|
|
|
|
|
|
|
|
|
|
# Enable power management options
|
|
|
|
|
powerManagement.enable = true;
|
|
|
|
|
|
|
|
|
|
# It's recommended to keep enabled on these constrained devices
|
|
|
|
|
zramSwap.enable = true;
|
|
|
|
|
|
2024-06-13 12:06:29 +02:00
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
|
|
|
|
|
2024-06-13 11:57:38 +02:00
|
|
|
|
# Auto-login for phosh
|
|
|
|
|
services.xserver.desktopManager.phosh = {
|
|
|
|
|
user = "user";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# User configuration
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
users.users."user" = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "User";
|
|
|
|
|
password = "user";
|
|
|
|
|
extraGroups = [
|
|
|
|
|
"dialout"
|
|
|
|
|
"feedbackd"
|
|
|
|
|
"networkmanager"
|
|
|
|
|
"video"
|
|
|
|
|
"wheel"
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# 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 = "23.11"; # Did you read the comment?
|
|
|
|
|
}
|