NixOS-Config/flake.nix

219 lines
7.1 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";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
# Disko for declaratively setting disk formatting
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
2024-02-12 17:16:32 +01:00
# Nixos generators for creating ISOs
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
# Conduit fork without all the fuss and drama
conduit = {
url = "github:girlbossceo/conduwuit";
inputs.nixpkgs.follows = "nixpkgs";
};
# Secret management with sops
2023-10-23 17:15:54 +02:00
sops-nix.url = "github:Mic92/sops-nix";
# Simple mail server
simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/master";
# Extra utils for flakes
2024-01-12 17:41:44 +01:00
flake-utils.url = "github:numtide/flake-utils";
# Manage KDE plasma desktop configuration
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";
2023-10-23 17:15:54 +02:00
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
2024-02-01 13:05:09 +01:00
# Lanzaboot (secure boot)
lanzaboote.url = "github:nix-community/lanzaboote";
2024-02-01 13:05:09 +01:00
# Jovian nixos (steam deck)
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";
# Fix for steam cursor not being visible under wayland
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,
2024-02-12 17:16:32 +01:00
nixos-generators,
2024-02-12 17:17:45 +01:00
disko,
2023-10-23 17:15:54 +02:00
home-manager,
sops-nix,
simple-nixos-mailserver,
2024-01-11 23:10:22 +01:00
plasma-manager,
linger,
pihole,
lanzaboote,
jovian,
nixos-hardware,
conduit,
2023-10-23 17:15:54 +02:00
...
} @ inputs: let
inherit (self) outputs;
# Supported systems for your flake packages, shell, etc.
systems = [
"armv7l-linux"
"x86_64-linux"
];
# This is a function that generates an attribute by calling a function you
# pass to it, with each system as an argument
forAllSystems = nixpkgs.lib.genAttrs systems;
2023-10-23 17:15:54 +02:00
in {
# Your custom packages
# Accessible through 'nix build', 'nix shell', etc
2024-03-24 18:44:28 +01:00
packages = forAllSystems (system:
import ./pkgs (import nixpkgs {
inherit system;
config.allowUnfree = true;
}));
# Formatter for your nix files, available through 'nix fmt'
# Other options beside 'alejandra' include 'nixpkgs-fmt'
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
2024-03-02 23:15:23 +01:00
# Reusable nixos modules you might want to export
# These are usually stuff you would upstream into nixpkgs
nixosModules = import ./modules/nixos;
# Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager
homeManagerModules = import ./modules/home-manager;
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays {inherit inputs;};
2023-10-23 17:15:54 +02:00
# 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 = [
nixos-hardware.nixosModules.dell-xps-13-7390
2023-10-23 17:15:54 +02:00
# > Our main nixos configuration file <
2023-12-28 12:47:58 +01:00
./nixos/hosts/EDI/configuration.nix
sops-nix.nixosModules.sops
lanzaboote.nixosModules.lanzaboote
disko.nixosModules.disko
home-manager.nixosModules.home-manager
{
home-manager.sharedModules = [inputs.plasma-manager.homeManagerModules.plasma-manager];
}
2023-10-23 17:15:54 +02:00
];
};
2023-10-26 16:48:06 +02:00
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
lanzaboote.nixosModules.lanzaboote
disko.nixosModules.disko
home-manager.nixosModules.home-manager
{
home-manager.sharedModules = [inputs.plasma-manager.homeManagerModules.plasma-manager];
}
2023-10-26 16:48:06 +02:00
];
};
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
disko.nixosModules.disko
simple-nixos-mailserver.nixosModule
];
};
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
lanzaboote.nixosModules.lanzaboote
disko.nixosModules.disko
jovian.nixosModules.jovian
home-manager.nixosModules.home-manager
{
home-manager.sharedModules = [inputs.plasma-manager.homeManagerModules.plasma-manager];
}
];
};
ISO = nixpkgs.lib.nixosSystem {
2024-03-20 19:46:42 +01:00
system = "x86_64-linux";
specialArgs = {inherit inputs outputs;};
modules = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix"
"${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix"
./nixos/hosts/iso/configuration.nix
sops-nix.nixosModules.sops
home-manager.nixosModules.home-manager
{
home-manager.sharedModules = [inputs.plasma-manager.homeManagerModules.plasma-manager];
}
];
};
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
disko.nixosModules.disko
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
};
}