Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { config, pkgs, ... }:
- {
- # Налаштування GRUB для вибору між NixOS та Windows
- boot.loader.grub = {
- enable = true;
- efiSupport = true;
- device = "nodev";
- useOSProber = true;
- };
- boot.loader.efi.canTouchEfiVariables = true;
- programs.zsh.enable = true;
- users.users.vlad = {
- isNormalUser = true;
- extraGroups = [ "wheel" "networkmanager" ];
- shell = pkgs.zsh;
- };
- # Розгортання локального сервера MySQL
- services.mysql = {
- enable = true;
- package = pkgs.mysql80;
- };
- environment.systemPackages = with pkgs; [
- git
- wget
- niri
- ];
- system.stateVersion = "26.05";
- }
Advertisement
Add Comment
Please, Sign In to add comment