1
0
Fork 0
nix-configuration/flake.nix

112 lines
3 KiB
Nix
Raw Normal View History

# 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
{
description = "Aires' system Flake";
inputs = {
# Track base packages against Nix unstable
2024-02-29 09:53:34 -05:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# SecureBoot support
2024-02-29 09:53:34 -05:00
lanzaboote.url = "github:nix-community/lanzaboote/v0.3.0";
# Flatpak support
2024-04-15 12:00:08 -04:00
nix-flatpak.url = "github:gmodena/nix-flatpak/v0.4.1";
2024-02-29 09:53:34 -05:00
# Hardware configurations
2024-05-03 22:36:50 -04:00
nixos-hardware.url = "github:NixOS/nixos-hardware";
# Auto-import modules
nypkgs.url = "github:yunfachi/nypkgs";
2024-02-29 09:53:34 -05:00
# Home-manager
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs"; # Use system packages list where available
};
# TODO: Add Disko - https://github.com/nix-community/disko
2024-02-29 09:53:34 -05:00
};
2024-05-03 22:36:50 -04:00
outputs = inputs@{ self, nixpkgs, lanzaboote, nix-flatpak, home-manager, nixos-hardware, nypkgs,... }:
2024-02-29 09:53:34 -05:00
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
# Define shared modules and imports
defaultModules = {
base = [
{ _module.args = { inherit inputs; }; }
./hosts/default.nix
2024-02-29 09:53:34 -05:00
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";
};
}
2024-05-03 22:36:50 -04:00
nypkgs.ylib.umport {
paths = [ ../modules ];
recursive = true;
}
2024-02-29 09:53:34 -05:00
];
};
in {
formatter = forAllSystems (pkgs: pkgs.nixfmt-rfc-style);
2024-02-29 09:53:34 -05:00
nixosConfigurations = {
2024-02-29 09:53:34 -05:00
Dimaga = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = defaultModules.base ++ [
2024-04-06 20:15:58 -04:00
nixos-hardware.nixosModules.common-cpu-intel
2024-02-29 09:53:34 -05:00
./hosts/Dimaga
];
};
Haven = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = defaultModules.base ++ [
nixos-hardware.nixosModules.common-cpu-amd-pstate
2024-02-29 09:53:34 -05:00
./hosts/Haven
];
};
2024-04-27 20:19:59 -04:00
Khanda = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = defaultModules.base ++ [
2024-04-28 11:54:53 -04:00
nixos-hardware.nixosModules.microsoft-surface-pro-intel
./hosts/Khanda
];
};
2024-03-04 10:57:41 -05:00
Pihole = nixpkgs.lib.nixosSystem {
2024-02-29 09:53:34 -05:00
system = "aarch64-linux";
modules = defaultModules.base ++ [
2024-03-04 10:57:41 -05:00
nixos-hardware.nixosModules.raspberry-pi-4
2024-02-29 09:53:34 -05:00
./hosts/Pihole
];
};
Shura = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = defaultModules.base ++ [
nixos-hardware.nixosModules.lenovo-legion-16arha7
2024-02-29 09:53:34 -05:00
./hosts/Shura
];
};
};
};
}