37 lines
647 B
Nix
37 lines
647 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../../modules/nixos/common.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
networking.hostName = "macnix";
|
|
|
|
environment.systemPackages = [
|
|
pkgs.ghostty.terminfo
|
|
];
|
|
|
|
users.users.martin = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
uid = 1000;
|
|
shell = pkgs.zsh;
|
|
};
|
|
|
|
services.openssh.enable = true;
|
|
|
|
environment.systemPackages = [
|
|
pkgs.ghostty.terminfo
|
|
];
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|