NixOS-Config/flake.nix

92 lines
2.6 KiB
Nix
Raw Normal View History

2023-10-23 17:15:54 +02:00
{
description = "NixOS configuration for Lillian Violet's systems";
inputs = {
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-10-23 17:15:54 +02:00
sops-nix.url = "github:Mic92/sops-nix";
# You can access packages and modules from different nixpkgs revs
# at the same time. Here's an working example:
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
# Home manager
2023-10-23 17:43:30 +02:00
home-manager.url = "github:nix-community/home-manager/master";
2023-10-23 17:15:54 +02:00
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2023-12-31 15:09:19 +01:00
extest.url = "github:chaorace/extest-nix";
2023-10-23 17:15:54 +02:00
# Add any other flake you might need
# hardware.url = "github:nixos/nixos-hardware";
};
outputs = {
self,
nixpkgs,
home-manager,
sops-nix,
...
} @ inputs: let
inherit (self) outputs;
in {
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
EDI = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2023-10-23 17:15:54 +02:00
specialArgs = {inherit inputs outputs;};
modules = [
# > Our main nixos configuration file <
2023-12-28 12:47:58 +01:00
./nixos/hosts/EDI/configuration.nix
sops-nix.nixosModules.sops
2023-10-23 17:15:54 +02:00
];
};
};
2023-10-26 16:48:06 +02:00
nixosConfigurations = {
GLaDOS = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2023-10-26 16:48:06 +02:00
specialArgs = {inherit inputs outputs;};
modules = [
# > Our main nixos configuration file <
2023-12-28 12:47:58 +01:00
./nixos/hosts/GLaDOS/configuration.nix
sops-nix.nixosModules.sops
2023-10-26 16:48:06 +02:00
];
};
};
nixosConfigurations = {
queen = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs outputs;};
modules = [
# > Our main nixos configuration file <
2023-12-28 12:47:58 +01:00
./nixos/hosts/queen/configuration.nix
sops-nix.nixosModules.sops
];
};
};
nixosConfigurations = {
shodan = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs outputs;};
modules = [
# > Our main nixos configuration file <
2023-12-28 12:47:58 +01:00
./nixos/hosts/shodan/configuration.nix
sops-nix.nixosModules.sops
];
};
};
2024-01-08 15:58:04 +01:00
nixosConfigurations = {
2024-01-08 18:23:08 +01:00
wheatley = nixpkgs.lib.nixosSystem {
2024-01-08 18:41:17 +01:00
system = "armv7l-linux";
2024-01-08 15:58:04 +01:00
specialArgs = {inherit inputs outputs;};
modules = [
# > Our main nixos configuration file <
./nixos/hosts/GLaDOS/configuration.nix
2024-01-08 22:43:04 +01:00
sops-nix.nixosModules.sops
2024-01-08 15:58:04 +01:00
];
};
};
2023-10-23 17:15:54 +02:00
};
}