Files
HyprNix/configuration.nix
2025-02-06 16:27:29 +01:00

25 lines
642 B
Nix

{ config, lib, systemSettings, ... }:
{
imports = [ ];
time.timeZone = systemSettings.timezone;
i18n.defaultLocale = systemSettings.locale;
services.xserver.xkb.layout = systemSettings.kbLayout;
users.users.${systemSettings.username} = {
isNormalUser = true;
uid = 1000;
extraGroups = [ "wheel" "networkmanager" "video" "audio" "lp" ];
packages = with pkgs; [
fastfetch
];
password = "password";
};
nixpkgs.config.allowUnfree = true;
system.stateVersion = "24.11";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}