21 lines
496 B
Nix
Raw Normal View History

{ config, pkgs, user, lib, inputs, ... }:
{
2024-09-26 20:15:20 -07:00
imports = [
./home-configuration.nix
2024-09-27 14:28:35 -07:00
./backup.nix
2024-09-26 20:15:20 -07:00
];
nixpkgs.config.permittedInsecurePackages = [ "electron-25.9.0" "openssl-1.1.1w" ];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Define user account.
users.users.${user} = {
isNormalUser = true;
extraGroups = [ "dialout" "wheel" "docker" "libvirtd" ];
shell = pkgs.bash;
};
}