15 lines
355 B
Nix
15 lines
355 B
Nix
# 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 = [
|
|
./base/system.nix
|
|
./base/users.nix
|
|
./desktop/hyprland.nix
|
|
./desktop/codex.nix
|
|
];
|
|
}
|