mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
28 lines
571 B
Nix
28 lines
571 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fileSystems."/".label = "root";
|
|
fileSystems."/boot".label = "boot";
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
system.stateVersion = "23.05";
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PermitRootLogin = "yes";
|
|
};
|
|
|
|
users.users.nixos = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "networkmanager" "audio" ];
|
|
initialHashedPassword = "";
|
|
};
|
|
|
|
nix = {
|
|
package = pkgs.nixUnstable;
|
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
|
};
|
|
}
|