34 lines
1 KiB
Nix
34 lines
1 KiB
Nix
# Edit this configuration file to define what should be installed on
|
|
# your system. Help is available in the configuration.nix(5) man page, on
|
|
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
|
{ pkgs, config, ... }:
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "nixos";
|
|
networking.networkmanager.enable = true;
|
|
|
|
time.timeZone = "America/New_York";
|
|
|
|
users.users.cswimr = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
group = "cswimr";
|
|
initialPassword = "cswimr";
|
|
};
|
|
users.groups.cswimr = { };
|
|
|
|
services.qemuGuest.enable = true;
|
|
|
|
# Add /etc/current-system-packages
|
|
environment.etc."current-system-packages".text =
|
|
let
|
|
packages = builtins.map (p: "${p.name}") config.environment.systemPackages;
|
|
sortedUnique = builtins.sort builtins.lessThan (pkgs.lib.lists.unique packages);
|
|
formatted = builtins.concatStringsSep "\n" sortedUnique;
|
|
in
|
|
formatted;
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|