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