More nixy setup.

This commit is contained in:
jay
2025-07-09 07:54:44 -04:00
parent b07d76f877
commit d0a8eea837
5 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./impermanence.nix
./programs/streamcontroller.nix
./system/bootloader.nix
./system/environment.nix
./system/filesystems.nix
./system/networking.nix
];
system.stateVersion = "24.11"; # Did you read the comment?
}