add hardware config

This commit is contained in:
iofq 2023-04-25 05:38:43 -05:00
parent 1a5d89af7a
commit 7cc67eda0f
7 changed files with 66 additions and 40 deletions

View file

@ -1,25 +1,25 @@
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./nano.nix
];
networking.hostName = "t14"; # Define your hostname.
environment.systemPackages = with pkgs; [
cryptsetup
];
fonts = {
fonts = with pkgs; [
spleen
[
./hardware-configuration.nix
./nano.nix
];
};
programs.light.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
nixpkgs.config.allowUnfree = true;
system.stateVersion = "22.11"; # Did you read the comment?
}
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";
}