mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 10:13:25 +01:00
3c38068594
Makes using Hyprland much faster on the PinePhone.
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ nix-config, pkgs, lib, ... }:
|
|
|
|
let
|
|
inherit (lib) singleton mkForce;
|
|
inherit (builtins) attrValues;
|
|
in
|
|
{
|
|
imports = attrValues {
|
|
inherit (nix-config.nixosModules) system shell desktop hardware;
|
|
};
|
|
|
|
nixpkgs.overlays = attrValues nix-config.overlays;
|
|
|
|
home-manager.sharedModules = attrValues nix-config.homeManagerModules ++ singleton {
|
|
wayland.windowManager.hyprland.settings = mkForce {
|
|
decoration = {
|
|
drop_shadow = false;
|
|
blur.enabled = false;
|
|
};
|
|
|
|
animations.enabled = false;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = attrValues nix-config.packages.${pkgs.system};
|
|
|
|
modules = {
|
|
system = {
|
|
hostName = "mobile-nixos";
|
|
stateVersion = "23.11";
|
|
phone = true;
|
|
};
|
|
|
|
desktop.phone = true;
|
|
hardware.phone = true;
|
|
};
|
|
|
|
environment = {
|
|
sessionVariables = {
|
|
LIBGL_ALWAYS_SOFTWARE = "true";
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
calls.enable = true;
|
|
};
|
|
|
|
networking = {
|
|
wireless.enable = false;
|
|
wireguard.enable = true;
|
|
};
|
|
|
|
services = {
|
|
openssh.enable = true;
|
|
};
|
|
|
|
powerManagement.enable = true;
|
|
}
|