nix/hosts/t14/configuration.nix
2023-04-25 05:38:43 -05:00

25 lines
499 B
Nix
Executable file

{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
./nano.nix
];
networking.hostName = "t14";
environment.systemPackages = with pkgs; [
cryptsetup
];
fonts = {
fonts = with pkgs; [
spleen
];
};
programs.light.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
nixpkgs.config.allowUnfree = true;
system.stateVersion = "22.11";
}