NixOS-Config/flake.nix

129 lines
4 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";
simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/master";
2024-01-12 17:41:44 +01:00
flake-utils.url = "github:numtide/flake-utils";
2024-01-11 23:17:39 +01:00
plasma-manager.url = "github:pjones/plasma-manager";
plasma-manager.inputs.nixpkgs.follows = "nixpkgs";
plasma-manager.inputs.home-manager.follows = "home-manager";
2023-10-23 17:15:54 +02:00
# 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'.
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
2023-10-23 17:15:54 +02:00
# 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";
# Required for making sure that Pi-hole continues running if the executing user has no active session.
linger = {
url = "github:mindsbackyard/linger-flake";
inputs.flake-utils.follows = "flake-utils";
};
pihole = {
url = "github:mindsbackyard/pihole-flake";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
inputs.linger.follows = "linger";
};
2023-10-23 17:15:54 +02:00
};
outputs = {
self,
nixpkgs,
home-manager,
sops-nix,
simple-nixos-mailserver,
2024-01-11 23:10:22 +01:00
plasma-manager,
linger,
pihole,
2023-10-23 17:15:54 +02:00
...
} @ 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
home-manager.nixosModules.home-manager
{
home-manager.sharedModules = [plasma-manager.homeManagerModules.plasma-manager];
}
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
home-manager.nixosModules.home-manager
{
home-manager.sharedModules = [plasma-manager.homeManagerModules.plasma-manager];
}
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
simple-nixos-mailserver.nixosModule
];
};
};
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 = [
2024-01-12 17:39:13 +01:00
# make the module declared by the linger flake available to our config
2024-01-14 16:04:20 +01:00
#linger.nixosModules."armv7l-linux".default
#pihole.nixosModules."armv7l-linux".default
2024-01-12 17:39:13 +01:00
2024-01-08 15:58:04 +01:00
# > Our main nixos configuration file <
./nixos/hosts/wheatley/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
};
}