2024-05-03 17:32:27 -04:00
|
|
|
# Based on the Auxolotl template: https://github.com/auxolotl/templates
|
2024-02-29 09:53:34 -05:00
|
|
|
# For info on Flakes, see: https://nixos-and-flakes.thiscute.world/nixos-with-flakes/nixos-with-flakes-enabled
|
|
|
|
{
|
2024-05-07 18:02:59 -04:00
|
|
|
description = "Aires' system Flake";
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
inputs = {
|
|
|
|
# Track base packages against unstable
|
|
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
2024-05-06 08:38:54 -04:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Replace Nix with Lix: https://lix.systems/
|
|
|
|
lix = {
|
|
|
|
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
lix-module = {
|
2024-05-16 12:43:58 -04:00
|
|
|
url = "git+https://git.lix.systems/lix-project/nixos-module";
|
2024-05-07 18:02:59 -04:00
|
|
|
inputs.lix.follows = "lix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# SecureBoot support
|
|
|
|
lanzaboote.url = "github:nix-community/lanzaboote/v0.3.0";
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Flatpak support
|
|
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak/v0.4.1";
|
2024-05-03 22:36:50 -04:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Hardware configurations
|
2024-05-12 12:06:08 -04:00
|
|
|
nixos-hardware.url = "github:8bitbuddhist/nixos-hardware/surface-pro-9-disable-psr";
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Home-manager
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager/master";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs"; # Use system packages list where available
|
|
|
|
};
|
2024-05-03 17:32:27 -04:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# TODO: Add Disko - https://github.com/nix-community/disko
|
|
|
|
};
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
outputs =
|
|
|
|
inputs@{
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
|
|
|
lanzaboote,
|
|
|
|
nix-flatpak,
|
|
|
|
home-manager,
|
|
|
|
nixos-hardware,
|
|
|
|
lix-module,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
forAllSystems =
|
|
|
|
function:
|
|
|
|
nixpkgs.lib.genAttrs [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
] (system: function nixpkgs.legacyPackages.${system});
|
|
|
|
config.allowUnfree = true;
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
# Define shared modules and imports
|
|
|
|
defaultModules = {
|
|
|
|
base = [
|
|
|
|
{
|
|
|
|
_module.args = {
|
|
|
|
inherit inputs;
|
|
|
|
};
|
|
|
|
}
|
2024-05-16 12:19:04 -04:00
|
|
|
./modules/autoimport.nix
|
2024-05-07 18:02:59 -04:00
|
|
|
lix-module.nixosModules.default
|
|
|
|
lanzaboote.nixosModules.lanzaboote
|
|
|
|
nix-flatpak.nixosModules.nix-flatpak
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{
|
|
|
|
home-manager = {
|
|
|
|
/*
|
|
|
|
When running, Home Manager will use the global package cache.
|
|
|
|
It will also back up any files that it would otherwise overwrite.
|
|
|
|
The originals will have the extension shown below.
|
|
|
|
*/
|
|
|
|
useGlobalPkgs = true;
|
|
|
|
useUserPackages = true;
|
|
|
|
backupFileExtension = "home-manager-backup";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
|
|
|
|
nixosConfigurations = {
|
2024-04-23 14:46:17 -04:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
Dimaga = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = defaultModules.base ++ [
|
|
|
|
nixos-hardware.nixosModules.common-cpu-intel
|
|
|
|
./hosts/Dimaga
|
|
|
|
];
|
|
|
|
};
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
Haven = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = defaultModules.base ++ [
|
|
|
|
nixos-hardware.nixosModules.common-cpu-amd-pstate
|
|
|
|
./hosts/Haven
|
|
|
|
];
|
|
|
|
};
|
2024-04-10 15:25:22 -04:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
Khanda = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = defaultModules.base ++ [
|
2024-05-12 12:06:08 -04:00
|
|
|
nixos-hardware.nixosModules.microsoft-surface-pro-9
|
2024-05-07 18:02:59 -04:00
|
|
|
./hosts/Khanda
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
Pihole = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "aarch64-linux";
|
|
|
|
modules = defaultModules.base ++ [
|
|
|
|
nixos-hardware.nixosModules.raspberry-pi-4
|
|
|
|
./hosts/Pihole
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
Shura = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = defaultModules.base ++ [
|
|
|
|
nixos-hardware.nixosModules.lenovo-legion-16arha7
|
|
|
|
./hosts/Shura
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|