This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/hosts/nil/default.nix

22 lines
818 B
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# This is nil.
# Nil is my currently my primary personal machine. It is a AMD Thinkpad T14 G2.
# Specs can be can be found in hardware.nix
{ self, config, lib, pkgs, modulesPath, ... }:
{
imports = [
./hardware.nix
../../profiles/laptop.nix
(modulesPath + "/installer/scan/not-detected.nix")
];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
}