2026-04-02 02:44:48 +02:00
|
|
|
{ config, lib, inputs, pkgs, ... }:
|
2026-03-30 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
inputs.catppuccin.nixosModules.catppuccin
|
|
|
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
|
inputs.nvf.nixosModules.default
|
|
|
|
|
|
|
|
|
|
./nvf
|
|
|
|
|
./branding.nix
|
|
|
|
|
./garbage.nix
|
|
|
|
|
./locale.nix
|
|
|
|
|
./nix.nix
|
|
|
|
|
./packages.nix
|
|
|
|
|
./user.nix
|
|
|
|
|
];
|
|
|
|
|
|
2026-04-02 02:44:48 +02:00
|
|
|
environment.enableAllTerminfo = true;
|
|
|
|
|
|
2026-04-04 18:23:05 +02:00
|
|
|
# image.fileName = lib.mkDefault "${config.networking.hostName}-${pkgs.stdenv.hostPlatform.system}";
|
|
|
|
|
# image.baseName = lib.mkDefault "${config.networking.hostName}-${pkgs.stdenv.hostPlatform.system}";
|
2026-04-02 02:44:48 +02:00
|
|
|
|
|
|
|
|
}
|