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

@ -2,14 +2,16 @@
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
networking.networkmanager.enable = true;
time.timeZone = "America/Chicago";
users.users.${username} = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
extraGroups = [
"wheel"
"plugdev"
"video"
];
};
environment.systemPackages = with pkgs; [
curl
];
system.stateVersion = "22.11"; # Did you read the comment?
users.groups.plugdev = {};
system.stateVersion = "22.11";
}

View file

@ -1,17 +1,17 @@
{ lib, nixpkgs, username, home-manager, ... }:
{ lib, nixpkgs, username, home-manager, nixos-hardware, ... }:
let
system = "x86_64-linux"; # System architecture
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true; # Allow proprietary software
config.allowUnfree = true;
};
lib = nixpkgs.lib;
in
{
t14 = lib.nixosSystem { # Laptop profile
t14 = lib.nixosSystem {
inherit system;
specialArgs = {
inherit username;
@ -22,6 +22,7 @@ in
modules = [
./configuration.nix
./t14/configuration.nix
nixos-hardware.nixosModules.lenovo-thinkpad-t14-amd-gen1
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;

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";
}