mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
15 lines
294 B
Nix
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";
|
|
}
|