nixos-config/machines/Librem5-Phone/default.nix

103 lines
2.2 KiB
Nix
Raw Normal View History

2023-02-16 18:51:34 +04:00
{ inputs, pkgs, lib, ... }: {
imports = with inputs.self;
with nixosProfiles; [
./hardware-configuration.nix
nixosRoles.base
inputs.nixos-hardware.nixosModules.purism-librem-5r4
applications-setup
bluetooth
power
hardware
sound
2023-02-22 00:34:25 +04:00
2023-02-16 18:51:34 +04:00
plasma-mobile
2023-02-22 00:34:25 +04:00
# phosh
2023-02-16 18:51:34 +04:00
nheko
okular
gwenview
aerc
helix
angelfish
nix
2023-02-18 22:57:44 +04:00
qmlkonsole
2023-02-16 18:51:34 +04:00
kdeconnect
cursor
fonts
gtk
qt
2023-02-22 00:34:25 +04:00
shadowsocks
2023-02-16 18:51:34 +04:00
pass-secret-service
];
programs.ssh.askPassword =
"${pkgs.plasma5Packages.ksshaskpass.out}/bin/ksshaskpass";
users.users.balsoft.password = lib.mkForce "0";
boot.kernelPackages = pkgs.linuxPackages_librem5;
system.stateVersion = "23.05";
home-manager.users.balsoft.home.stateVersion = "22.11";
themes.fonts = {
main.size = 10;
serif.size = 10;
2023-02-24 14:33:13 +04:00
mono.size = 11;
2023-02-16 18:51:34 +04:00
};
2023-02-24 14:33:13 +04:00
environment.systemPackages = [ pkgs.pure-maps pkgs.plasma5Packages.elisa ];
environment.etc."gnss-share.conf".text = ''
# Socket to sent NMEA location to
socket="/var/run/gnss-share.sock"
# Group to set as owner for the socket
group="geoclue"
# GPS device driver to use
# Supported values: stm, stm_serial
device_driver="stm"
# Path to GPS device to use
device_path="/dev/gnss0"
# Baud rate for GPS serial device
device_baud_rate=9600
# Directory to load/store almanac and ephemeris data
agps_directory="/var/cache/gnss-share"
'';
systemd.services.gnss-share = {
script = "gnss-share";
description = "GNSS location manager";
path = [ pkgs.gnss-share ];
wantedBy = [ "multi-user.target" ];
before = [ "geoclue.service" ];
};
environment.etc."geoclue/geoclue.conf".text = lib.mkForce
(lib.generators.toINI { } {
network-nmea = {
enable = true;
nmea-socket = "/var/run/gnss-share.sock";
};
modem-gps.enable = true;
cdma.enable = true;
"3g".enable = true;
agent.whitelist = "geoclue-demo-agent";
wifi = {
enable = true;
url = "https://location.services.mozilla.com/v1/geolocate?key=geoclue";
};
});
home-manager.users.balsoft.programs.git.signing.signByDefault =
lib.mkForce false;
2023-02-16 18:51:34 +04:00
}