summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/default.nix9
-rw-r--r--hosts/muspell/default.nix60
2 files changed, 66 insertions, 3 deletions
diff --git a/hosts/default.nix b/hosts/default.nix
index deba17c..015e307 100644
--- a/hosts/default.nix
+++ b/hosts/default.nix
@@ -1,4 +1,4 @@
-{ nixpkgs }:
+{ nixpkgs, mobile-nixos }:
let
mkHost = system: hostname: modules: {
@@ -6,7 +6,7 @@ let
inherit system;
modules = [ ../modules ../users ] ++ modules;
specialArgs = {
- inherit hostname nixpkgs;
+ inherit hostname nixpkgs mobile-nixos;
};
};
};
@@ -27,7 +27,7 @@ let
(system: hostnames:
map (h: mkHost system h [./${h}]) hostnames)
systemsHosts)));
-
+
hostsImport = file:
import file {
inherit nixpkgs mkHost hosts;
@@ -37,5 +37,8 @@ hosts {
"x86_64-linux" = [
"thyme"
];
+ "aarch64-linux" = [
+ "muspell"
+ ];
} //
hostsImport ./ades
diff --git a/hosts/muspell/default.nix b/hosts/muspell/default.nix
new file mode 100644
index 0000000..ec3572c
--- /dev/null
+++ b/hosts/muspell/default.nix
@@ -0,0 +1,60 @@
+{ mobile-nixos, lib, pkgs, ... }:
+
+{
+ imports = [
+ (import "${mobile-nixos}/lib/configuration.nix" {
+ device = "pine64-pinephone";
+ })
+ ];
+
+ this.locales.default = "us";
+
+ time.timeZone = "America/Chicago";
+
+ this.pc.enable = true;
+ this.overlays.emacs.enable = lib.mkForce false;
+
+ this.users.enabled = ["simon"];
+
+ this.sets = {
+ cli.tools.full = true;
+ de.utils = true;
+ media.tools = true;
+ net.tools.minimal = true;
+ script.utils = true;
+ sound.tools = true;
+ sys.tools = true;
+ };
+
+ services.xserver = {
+ enable = true;
+ desktopManager.plasma5.mobile.enable = true;
+ displayManager.lightdm = {
+ enable = true;
+ # Workaround for autologin only working at first launch.
+ # A logout or session crashing will show the login screen otherwise.
+ extraSeatDefaults = ''
+ session-cleanup-script=${pkgs.procps}/bin/pkill -P1 -fx ${pkgs.lightdm}/sbin/lightdm
+ '';
+ };
+ };
+ programs.firefox = {
+ enable = true;
+ package = pkgs.firefox-esr;
+ };
+
+ hardware.bluetooth.enable = true;
+ powerManagement.enable = true;
+ services.libinput.enable = true;
+ services.displayManager.defaultSession = "plasma-mobile";
+ services.displayManager.autoLogin.enable = true;
+
+ # Ensures any rndis config from stage-1 is not clobbered by NetworkManager
+ networking.networkmanager.unmanaged = [ "rndis0" "usb0" ];
+
+ # Setup USB gadget networking in initrd...
+ mobile.boot.stage-1.networking.enable = true;
+
+ nixpkgs.hostPlatform = "aarch64-linux";
+ system.stateVersion = "24.11";
+}