mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
90 lines
1.9 KiB
Nix
90 lines
1.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
(import <mobile-nixos/lib/configuration.nix> { device = "pine64-pinephone"; })
|
|
./hardware-configuration.nix
|
|
<mobile-nixos/examples/phosh/phosh.nix>
|
|
];
|
|
|
|
fileSystems."/mnt/ExtraDrive" =
|
|
{ device = "/dev/disk/by-uuid/631d2b85-2e0b-4740-8b45-6147cf15193f";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
# Kernel changes
|
|
# boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
nix.settings.auto-optimise-store = true;
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 30d";
|
|
};
|
|
|
|
# NetworkManager
|
|
networking.wireless.enable = false;
|
|
networking.networkmanager.enable = true;
|
|
networking.hostName = "peebee";
|
|
|
|
# SSH
|
|
services.openssh = {
|
|
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;
|
|
|
|
# Auto-login for phosh
|
|
services.xserver.desktopManager.phosh = {
|
|
user = "aaronh";
|
|
};
|
|
|
|
time.timeZone = "America/Denver";
|
|
|
|
users.users."aaronh" = {
|
|
isNormalUser = true;
|
|
description = "Aaron Honeycutt";
|
|
hashedPassword = "$6$zOZeSMch129yV5i1$9E0sFdMo4qIBUZgPKgl5AXKlYNku12gv2owPy7FSpC2W4qMofTzoX2KFLmGxERdI8A7n0kyJElcUFQGIS940j1";
|
|
extraGroups = [
|
|
"dialout"
|
|
"feedbackd"
|
|
"networkmanager"
|
|
"video"
|
|
"wheel"
|
|
];
|
|
|
|
# GUI
|
|
packages = with pkgs; [
|
|
portfolio-filemanager
|
|
|
|
# CLI
|
|
grim
|
|
];
|
|
};
|
|
|
|
# Remove GNOME packages
|
|
environment.gnome.excludePackages = (with pkgs; [
|
|
gnome-photos
|
|
gnome-tour
|
|
]);
|
|
|
|
environment.systemPackages = (with pkgs; [
|
|
# rest of your packages
|
|
]);
|
|
|
|
system.stateVersion = "23.11";
|