blob: 6624a9e809dff0365813c0e0e4a4889fc9d0131d (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ config, lib, pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
system.stateVersion = "24.05";
networking.hostName = "T495";
environment.systemPackages = with pkgs; [
input-leap
];
}
|