mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 10:35:17 +03:00
33 lines
669 B
Nix
33 lines
669 B
Nix
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
let
|
|
my = import ../..;
|
|
in {
|
|
imports = [
|
|
./hardware.nix # Use nixos-generate-config --show-hardware-config > /etc/nixos/machines/MACHINE/hardware.nix
|
|
my.modules
|
|
];
|
|
|
|
# Bootloader configuration
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "MACHINE";
|
|
|
|
# All "my" options
|
|
my.laptop.enable = true;
|
|
my.roles = {
|
|
design.enable = true;
|
|
devel.enable = true;
|
|
gaming.enable = true;
|
|
graphical.enable = true;
|
|
latex.enable = true;
|
|
virtualisation.enable = true;
|
|
yggdrasil-client.enable = true;
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|
|
|