mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
21 lines
496 B
Nix
21 lines
496 B
Nix
{ config, pkgs, user, lib, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./home-configuration.nix
|
|
./backup.nix
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|