2023-10-23 00:16:38 +02:00
|
|
|
{
|
2023-10-23 11:14:04 +02:00
|
|
|
description = "Jo's NixOS configuration";
|
2023-10-23 00:16:38 +02:00
|
|
|
|
|
|
|
inputs = {
|
2024-07-23 08:36:03 +02:00
|
|
|
# Nixpkgs instance.
|
2024-11-14 22:47:48 +01:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
2023-10-25 12:12:59 +02:00
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
# Snowfall lib imposes an opinionated file-structure, which makes things a little easier sometimes.
|
|
|
|
snowfall-lib = {
|
|
|
|
url = "github:snowfallorg/lib";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-09-22 03:11:14 +02:00
|
|
|
# Secret management tool
|
|
|
|
sops-nix = {
|
|
|
|
url = "github:Mic92/sops-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
# Home manager for managing the /home directory.
|
2024-04-25 02:33:53 +02:00
|
|
|
home-manager = {
|
2024-07-23 08:36:03 +02:00
|
|
|
url = "github:nix-community/home-manager";
|
2023-11-19 23:12:39 +01:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
# Hardware specific tweaks and performance optimizations.
|
2024-11-14 22:47:48 +01:00
|
|
|
hardware = {
|
|
|
|
url = "github:NixOS/nixos-hardware/master";
|
|
|
|
};
|
2024-05-29 00:15:32 +02:00
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
# Catppuccin theme nix configuration.
|
2024-11-14 22:47:48 +01:00
|
|
|
catppuccin = {
|
|
|
|
url = "github:catppuccin/nix";
|
|
|
|
};
|
2024-06-06 12:22:10 +02:00
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
# Declarative management of Flatpak packages.
|
2024-11-14 22:47:48 +01:00
|
|
|
nix-flatpak = {
|
|
|
|
url = "github:gmodena/nix-flatpak/?ref=v0.4.1";
|
|
|
|
};
|
2023-10-23 00:16:38 +02:00
|
|
|
};
|
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
outputs = inputs:
|
|
|
|
inputs.snowfall-lib.mkFlake {
|
|
|
|
inherit inputs; # Providing flake inputs to Snowfall Lib.
|
|
|
|
src = ./.; # "src" must point to the root of the flake.
|
2024-04-25 02:33:53 +02:00
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
snowfall = {
|
|
|
|
# Namespace for this flake's packages, library and overlays.
|
|
|
|
namespace = "puzzlevision";
|
2024-04-25 02:33:53 +02:00
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
meta = {
|
|
|
|
name = "jos-nixos-configuration"; # Used in certain places, like documentations. No spaces.
|
|
|
|
title = "Jo's NixOS configuration"; # Basically just for decorational purposes.
|
|
|
|
};
|
2023-10-23 00:16:38 +02:00
|
|
|
};
|
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
channels-config = {
|
2024-12-03 18:38:19 +01:00
|
|
|
allowUnfree = true;
|
2024-05-20 18:08:16 +02:00
|
|
|
};
|
|
|
|
|
2024-09-22 03:11:14 +02:00
|
|
|
# Apply some NixOS modules globally.
|
|
|
|
systems.modules.nixos = with inputs; [
|
|
|
|
sops-nix.nixosModules.sops
|
|
|
|
];
|
|
|
|
|
2024-07-23 08:36:03 +02:00
|
|
|
# Apply some home-manager modules globally.
|
|
|
|
homes.modules = with inputs; [
|
|
|
|
nix-flatpak.homeManagerModules.nix-flatpak
|
|
|
|
catppuccin.homeManagerModules.catppuccin
|
|
|
|
];
|
2023-10-23 00:16:38 +02:00
|
|
|
};
|
|
|
|
}
|