nixos-config/flake.nix

96 lines
2.6 KiB
Nix
Raw Permalink Normal View History

2022-01-06 21:14:02 -05:00
{
description = "System conf";
inputs = {
2022-04-20 23:40:29 -04:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-01-07 20:54:12 -05:00
2022-03-04 13:25:16 -05:00
nixos-hardware.url = "github:NixOS/nixos-hardware";
2024-08-03 09:51:30 -04:00
mobile-nixos.url = "github:mobile-nixos/mobile-nixos";
2023-01-07 20:54:12 -05:00
mobile-nixos.flake = false;
sxmo.url = "github:wentam/sxmo-nix";
sxmo.flake = false;
2023-01-07 22:44:17 -05:00
2022-01-06 21:14:02 -05:00
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2022-10-26 15:54:00 -04:00
tokyo-night-sddm-src.url = "github:rototrash/tokyo-night-sddm";
tokyo-night-sddm-src.flake = false;
2024-11-04 16:16:40 -05:00
macos-hyprcursor-src.url = "github:driedpampas/macOS-hyprcursor";
macos-hyprcursor-src.flake = false;
2022-01-06 21:14:02 -05:00
};
outputs = { self,
nixpkgs,
home-manager,
nixos-hardware,
2023-01-07 22:32:56 -05:00
mobile-nixos,
2023-01-07 22:44:17 -05:00
sxmo,
2022-01-06 21:14:02 -05:00
...}@inputs:
let
username = "kiana";
2022-10-26 15:54:00 -04:00
fullname = "Kiana Sheibani";
2024-02-13 15:13:46 -05:00
email = "kiana.a.sheibani@gmail.com";
moduleArgs = { inherit username fullname email; } // inputs;
mkConfig =
{ machine,
system ? "x86_64-linux",
configModules ? [ ./config ],
configExtraModules ? [],
homeModules ? [ ./home-manager ],
homeExtraModules ? []
}:
{
"toki-${machine}" = nixpkgs.lib.nixosSystem {
inherit system;
modules =
configModules ++
configExtraModules ++
[
./machine.nix
{ _module.args = moduleArgs;
inherit machine; }
./hardware-configuration/${machine}.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = moduleArgs;
home-manager.sharedModules = [ ./machine.nix { inherit machine; } ];
home-manager.users.${username} = {
imports = homeModules ++ homeExtraModules;
};
}
];
};
};
in {
nixosConfigurations =
mkConfig {
machine = "earth";
} //
mkConfig {
machine = "fire";
configExtraModules = [
2023-05-15 10:47:52 -04:00
nixos-hardware.nixosModules.microsoft-surface-pro-intel
];
} //
mkConfig {
machine = "air";
2023-01-07 22:51:37 -05:00
system = "aarch64-linux";
configExtraModules = [
2023-01-07 22:19:04 -05:00
./mobile/config.nix
(import (mobile-nixos + /lib/configuration.nix)
{ device = "pine64-pinephonepro"; })
(sxmo + /modules/sxmo)
(sxmo + /modules/tinydm)
];
homeModules = [
./mobile/home-manager.nix
2023-01-07 20:54:12 -05:00
];
};
2022-01-06 21:14:02 -05:00
};
}