2023-10-23 17:15:54 +02:00
|
|
|
{
|
|
|
|
description = "NixOS configuration for Lillian Violet's systems";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
# Nixpkgs
|
2023-10-23 17:32:58 +02:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
2024-03-04 18:05:20 +01:00
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
|
|
|
2024-02-12 16:36:27 +01:00
|
|
|
# Disko for declaratively setting disk formatting
|
2024-02-12 17:19:44 +01:00
|
|
|
disko.url = "github:nix-community/disko";
|
|
|
|
disko.inputs.nixpkgs.follows = "nixpkgs";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2024-04-26 22:59:34 +02:00
|
|
|
# catpuccin theme
|
|
|
|
catppuccin.url = "github:catppuccin/nix";
|
|
|
|
|
2024-03-14 13:50:43 +01:00
|
|
|
# Conduit fork without all the fuss and drama
|
|
|
|
conduit = {
|
2024-03-24 21:35:32 +01:00
|
|
|
url = "github:girlbossceo/conduwuit";
|
2024-03-14 13:50:43 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-04-23 11:32:18 +02:00
|
|
|
# Nix index database files
|
|
|
|
nix-index-database.url = "github:nix-community/nix-index-database";
|
|
|
|
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
2024-02-12 16:36:27 +01:00
|
|
|
# Secret management with sops
|
2023-10-23 17:15:54 +02:00
|
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
|
|
|
# Simple mail server
|
2024-01-19 15:43:14 +01:00
|
|
|
simple-nixos-mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/master";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
|
|
|
# Extra utils for flakes
|
2024-01-12 17:41:44 +01:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
|
|
|
# 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";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
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:
|
2024-01-19 15:43:14 +01:00
|
|
|
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)
|
2024-02-03 18:10:52 +01:00
|
|
|
lanzaboote.url = "github:nix-community/lanzaboote";
|
2024-02-01 13:05:09 +01:00
|
|
|
|
|
|
|
# Jovian nixos (steam deck)
|
2024-03-20 16:43:19 +01:00
|
|
|
jovian.url = "github:Jovian-Experiments/Jovian-NixOS";
|
2024-01-11 13:24:48 +01:00
|
|
|
|
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";
|
2024-02-12 16:36:27 +01:00
|
|
|
|
2024-05-02 11:11:12 +02:00
|
|
|
zjstatus.url = "github:dj95/zjstatus";
|
|
|
|
|
2024-02-12 16:36:27 +01:00
|
|
|
# Fix for steam cursor not being visible under wayland
|
|
|
|
|
2023-10-23 17:15:54 +02:00
|
|
|
# Add any other flake you might need
|
|
|
|
# hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
2024-02-12 17:16:32 +01:00
|
|
|
nixos-generators,
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin,
|
2024-02-12 17:17:45 +01:00
|
|
|
disko,
|
2023-10-23 17:15:54 +02:00
|
|
|
home-manager,
|
|
|
|
sops-nix,
|
2024-01-11 22:37:59 +01:00
|
|
|
simple-nixos-mailserver,
|
2024-01-11 23:10:22 +01:00
|
|
|
plasma-manager,
|
2024-05-02 11:11:12 +02:00
|
|
|
zjstatus,
|
2024-02-03 18:14:27 +01:00
|
|
|
lanzaboote,
|
2024-03-20 19:42:38 +01:00
|
|
|
jovian,
|
2024-03-04 18:05:20 +01:00
|
|
|
nixos-hardware,
|
2024-04-23 11:32:18 +02:00
|
|
|
nix-index-database,
|
2024-03-14 13:50:43 +01:00
|
|
|
conduit,
|
2023-10-23 17:15:54 +02:00
|
|
|
...
|
|
|
|
} @ inputs: let
|
|
|
|
inherit (self) outputs;
|
2024-01-18 11:59:01 +01:00
|
|
|
# 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 {
|
2024-01-18 11:59:01 +01:00
|
|
|
# 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;
|
|
|
|
}));
|
2024-01-18 11:59:01 +01:00
|
|
|
# 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;
|
|
|
|
|
2024-01-18 11:59:01 +01:00
|
|
|
# Your custom packages and modifications, exported as overlays
|
2024-05-02 11:54:18 +02:00
|
|
|
overlays = import ./overlays {inherit inputs;};
|
2024-01-18 11:59:01 +01:00
|
|
|
|
2023-10-23 17:15:54 +02:00
|
|
|
# NixOS configuration entrypoint
|
|
|
|
# Available through 'nixos-rebuild --flake .#your-hostname'
|
|
|
|
nixosConfigurations = {
|
|
|
|
EDI = nixpkgs.lib.nixosSystem {
|
2024-01-08 19:11:16 +01:00
|
|
|
system = "x86_64-linux";
|
2023-10-23 17:15:54 +02:00
|
|
|
specialArgs = {inherit inputs outputs;};
|
|
|
|
modules = [
|
2024-03-04 18:05:20 +01:00
|
|
|
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
|
2023-10-27 15:42:20 +02:00
|
|
|
sops-nix.nixosModules.sops
|
2024-02-03 18:10:52 +01:00
|
|
|
lanzaboote.nixosModules.lanzaboote
|
2024-02-12 16:36:27 +01:00
|
|
|
disko.nixosModules.disko
|
2024-01-17 10:29:41 +01:00
|
|
|
home-manager.nixosModules.home-manager
|
2024-04-23 11:32:18 +02:00
|
|
|
nix-index-database.nixosModules.nix-index
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin.nixosModules.catppuccin
|
2024-01-17 10:29:41 +01:00
|
|
|
{
|
2024-04-26 22:59:34 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
|
|
];
|
2024-01-17 10:29:41 +01:00
|
|
|
}
|
2023-10-23 17:15:54 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-10-26 16:48:06 +02:00
|
|
|
GLaDOS = nixpkgs.lib.nixosSystem {
|
2024-01-08 19:11:16 +01:00
|
|
|
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
|
2023-10-27 15:42:20 +02:00
|
|
|
sops-nix.nixosModules.sops
|
2024-02-15 22:19:37 +01:00
|
|
|
lanzaboote.nixosModules.lanzaboote
|
2024-02-12 16:36:27 +01:00
|
|
|
disko.nixosModules.disko
|
2024-01-11 23:46:19 +01:00
|
|
|
home-manager.nixosModules.home-manager
|
2024-04-23 11:32:18 +02:00
|
|
|
nix-index-database.nixosModules.nix-index
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin.nixosModules.catppuccin
|
2024-01-17 10:29:41 +01:00
|
|
|
{
|
2024-04-26 22:59:34 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
|
|
];
|
2024-01-17 10:29:41 +01:00
|
|
|
}
|
2023-10-26 16:48:06 +02:00
|
|
|
];
|
|
|
|
};
|
2023-11-19 23:12:21 +01:00
|
|
|
|
|
|
|
queen = nixpkgs.lib.nixosSystem {
|
2024-01-08 19:11:16 +01:00
|
|
|
system = "x86_64-linux";
|
2024-01-19 15:43:14 +01:00
|
|
|
specialArgs = {inherit inputs outputs;};
|
2023-11-19 23:12:21 +01:00
|
|
|
modules = [
|
|
|
|
# > Our main nixos configuration file <
|
2023-12-28 12:47:58 +01:00
|
|
|
./nixos/hosts/queen/configuration.nix
|
2023-11-19 23:12:21 +01:00
|
|
|
sops-nix.nixosModules.sops
|
2024-02-12 16:36:27 +01:00
|
|
|
disko.nixosModules.disko
|
2024-01-11 22:37:59 +01:00
|
|
|
simple-nixos-mailserver.nixosModule
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin.nixosModules.catppuccin
|
|
|
|
{
|
|
|
|
home-manager.sharedModules = [
|
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
|
|
];
|
|
|
|
}
|
2023-11-19 23:12:21 +01:00
|
|
|
];
|
|
|
|
};
|
2023-12-27 16:23:57 +01:00
|
|
|
|
|
|
|
shodan = nixpkgs.lib.nixosSystem {
|
2024-01-08 19:11:16 +01:00
|
|
|
system = "x86_64-linux";
|
2023-12-27 16:23:57 +01:00
|
|
|
specialArgs = {inherit inputs outputs;};
|
|
|
|
modules = [
|
|
|
|
# > Our main nixos configuration file <
|
2023-12-28 12:47:58 +01:00
|
|
|
./nixos/hosts/shodan/configuration.nix
|
2023-12-27 16:23:57 +01:00
|
|
|
sops-nix.nixosModules.sops
|
2024-03-18 22:30:27 +01:00
|
|
|
lanzaboote.nixosModules.lanzaboote
|
|
|
|
disko.nixosModules.disko
|
2024-03-20 19:42:38 +01:00
|
|
|
jovian.nixosModules.jovian
|
|
|
|
home-manager.nixosModules.home-manager
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin.nixosModules.catppuccin
|
2024-03-20 19:42:38 +01:00
|
|
|
{
|
2024-04-26 22:59:34 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
|
|
];
|
2024-03-20 19:42:38 +01:00
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
ISO = nixpkgs.lib.nixosSystem {
|
2024-03-20 19:46:42 +01:00
|
|
|
system = "x86_64-linux";
|
2024-03-20 19:42:38 +01:00
|
|
|
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
|
2024-03-14 13:50:43 +01:00
|
|
|
home-manager.nixosModules.home-manager
|
2024-04-23 11:32:18 +02:00
|
|
|
nix-index-database.nixosModules.nix-index
|
2024-04-26 22:59:34 +02:00
|
|
|
catppuccin.nixosModules.catppuccin
|
2024-03-14 13:50:43 +01:00
|
|
|
{
|
2024-04-26 22:59:34 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
|
|
];
|
2024-05-06 15:55:51 +02:00
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
iso_server = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = {inherit inputs outputs;};
|
|
|
|
modules = [
|
|
|
|
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
|
|
|
|
"${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix"
|
|
|
|
./nixos/hosts/iso_server/configuration.nix
|
|
|
|
sops-nix.nixosModules.sops
|
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
nix-index-database.nixosModules.nix-index
|
|
|
|
catppuccin.nixosModules.catppuccin
|
|
|
|
{
|
|
|
|
home-manager.sharedModules = [
|
|
|
|
inputs.catppuccin.homeManagerModules.catppuccin
|
|
|
|
];
|
2024-03-14 13:50:43 +01:00
|
|
|
}
|
2023-12-27 16:23:57 +01:00
|
|
|
];
|
|
|
|
};
|
2024-01-08 15:58:04 +01:00
|
|
|
};
|
2023-10-23 17:15:54 +02:00
|
|
|
};
|
|
|
|
}
|