dotfiles.nix/nixos/hosts/zeus.asahi.nix
2023-03-20 13:15:32 -07:00

13 lines
303 B
Nix

{pkgs, ...}: {
imports = [../profiles/linux-common.nix ../profiles/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";
}