dotfiles.nix/system/zeus.asahi.nix
2023-02-09 12:06:19 -08:00

15 lines
294 B
Nix

{ pkgs, ... }:
{
imports = [ ./nixos.common.nix ./nixos.gnome.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = false;
fileSystems."/" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
networking.hostName = "zeus-asahi";
}