2024-10-11 19:34:06 +02:00
|
|
|
{ nix-config, ... }:
|
2024-06-15 16:46:45 +02:00
|
|
|
|
2024-06-15 17:56:02 +02:00
|
|
|
let
|
2024-06-16 18:50:49 +02:00
|
|
|
inherit (builtins) attrValues;
|
2024-06-15 17:56:02 +02:00
|
|
|
in
|
2024-06-15 16:46:45 +02:00
|
|
|
{
|
2024-10-11 19:47:59 +02:00
|
|
|
imports =
|
|
|
|
attrValues nix-config.nixosModules
|
|
|
|
++ attrValues nix-config.inputs.mobile-nixos.nixosModules;
|
2024-06-25 02:12:02 +02:00
|
|
|
|
2024-09-02 01:44:17 +02:00
|
|
|
nixpkgs = {
|
2024-10-11 19:34:06 +02:00
|
|
|
overlays = with nix-config.overlays; [ phinger-cursors ];
|
2024-09-02 01:44:17 +02:00
|
|
|
|
|
|
|
config.permittedInsecurePackages = [
|
|
|
|
"olm-3.2.16"
|
|
|
|
];
|
|
|
|
};
|
2024-06-25 01:10:49 +02:00
|
|
|
|
2024-10-11 19:34:06 +02:00
|
|
|
home-manager.sharedModules = with nix-config.homeModules; [
|
2024-09-09 19:24:50 +02:00
|
|
|
dconf
|
|
|
|
eza
|
|
|
|
fish
|
|
|
|
git
|
|
|
|
gpg
|
|
|
|
gtk
|
|
|
|
htop
|
|
|
|
kitty
|
|
|
|
librewolf
|
|
|
|
neovim
|
|
|
|
starship
|
|
|
|
xdg-user-dirs
|
|
|
|
xresources
|
|
|
|
];
|
2024-06-16 21:45:01 +02:00
|
|
|
|
2024-06-19 08:09:54 +02:00
|
|
|
modules = {
|
|
|
|
system = {
|
|
|
|
hostName = "mobile-nixos";
|
|
|
|
stateVersion = "23.11";
|
2024-07-17 12:49:30 +02:00
|
|
|
mullvad = true;
|
2024-06-20 19:22:41 +02:00
|
|
|
};
|
2024-06-20 17:08:22 +02:00
|
|
|
|
2024-06-24 22:21:22 +02:00
|
|
|
hardware.keyboardBinds = true;
|
2024-09-09 19:08:19 +02:00
|
|
|
|
|
|
|
phone.enable = true;
|
2024-06-16 18:50:49 +02:00
|
|
|
};
|
2024-10-11 19:15:10 +02:00
|
|
|
|
|
|
|
mobile.beautification = {
|
|
|
|
silentBoot = true;
|
|
|
|
splash = true;
|
|
|
|
};
|
2024-06-15 16:46:45 +02:00
|
|
|
}
|