From dbe6588198b618de36405ec9451700319b21d794 Mon Sep 17 00:00:00 2001 From: vpochapuis Date: Mon, 15 Jan 2024 21:57:40 +0800 Subject: [PATCH] Add initial config --- configuration.nix | 197 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 configuration.nix diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..b5e1c4b --- /dev/null +++ b/configuration.nix @@ -0,0 +1,197 @@ +# Edit this configuration file to define what should be installed on +# your system. Help is available in the configuration.nix(5) man page +# and in the NixOS manual (accessible by running ‘nixos-help’). + +{ config, pkgs, ... }: +let + unstable = import + (builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/nixos-unstable) + # reuse the current configuration + { config = config.nixpkgs.config; }; +in +{ + imports = + [ # Include the results of the hardware scan. + ./hardware-configuration.nix + # audio prod musnix channel https://github.com/musnix/musnix + + ]; + + # Bootloader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + boot.initrd.luks.devices."luks-54b7aa8e-f52b-47be-82d0-8a51264480af".device = "/dev/disk/by-uuid/54b7aa8e-f52b-47be-82d0-8a51264480af"; + networking.hostName = "vchapuis-taiwan-home-desktop"; # Define your hostname. + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + + # Configure network proxy if necessary + # networking.proxy.default = "http://user:password@proxy:port/"; + # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; + + # Enable networking + networking.networkmanager.enable = true; + + # Set your time zone. + time.timeZone = "Asia/Taipei"; + + # Select internationalisation properties. + i18n.defaultLocale = "en_US.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "zh_TW.UTF-8"; + LC_IDENTIFICATION = "zh_TW.UTF-8"; + LC_MEASUREMENT = "zh_TW.UTF-8"; + LC_MONETARY = "zh_TW.UTF-8"; + LC_NAME = "zh_TW.UTF-8"; + LC_NUMERIC = "zh_TW.UTF-8"; + LC_PAPER = "zh_TW.UTF-8"; + LC_TELEPHONE = "zh_TW.UTF-8"; + LC_TIME = "zh_TW.UTF-8"; + }; + + # Enable the X11 windowing system. + services.xserver.enable = true; + services.xserver.videoDrivers = [ "amdgpu" ]; + # Vulkan Support + hardware.opengl.driSupport = true; + hardware.opengl.driSupport32Bit = true; + + # Enable the GNOME Desktop Environment. + services.xserver.displayManager.gdm.enable = true; + services.xserver.desktopManager.gnome.enable = true; + + # Configure keymap in X11 + services.xserver = { + layout = "us"; + xkbVariant = "altgr-intl"; + }; + + # Enable CUPS to print documents. + services.printing.enable = true; + + # Enable sound with pipewire. + sound.enable = true; + hardware.pulseaudio.enable = false; + security.rtkit.enable = false; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + wireplumber.enable = true; + jack.enable = true; + + # use the example session manager (no others are packaged yet so this is enabled by default, + # no need to redefine it in your config for now) + #media-session.enable = true; + }; + + # Enable musnix + musnix.enable = true; + + # Enable ISO mounting + services.udisks2.enable = true; + + # Virtualbox virtualization + virtualisation.virtualbox.host.enable = true; + users.extraGroups.vboxusers.members = [ "vchapuis" ]; + virtualisation.virtualbox.guest.enable = true; + virtualisation.virtualbox.guest.x11 = true; + virtualisation.virtualbox.host.enableExtensionPack = true; + + # Enable touchpad support (enabled default in most desktopManager). + # services.xserver.libinput.enable = true; + + + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.vchapuis = { + isNormalUser = true; + description = "vchapuis"; + extraGroups = [ "networkmanager" "wheel" "audio" "wireshark"]; + + packages = with pkgs; [ + firefox-bin + pavucontrol + xorg.xeyes + element-desktop + neofetch + qjackctl + sonobus + blender-hip + gimp + inkscape + kdenlive + ardour + rustup + vscodium + gnome3.gnome-tweaks + yabridge + yabridgectl + # Using unstable wine ( >8.20) because of missing fix for running Kontakt 7 with hdpi screen + unstable.wineWowPackages.staging + unstable.winetricks + obs-studio + wireshark + libreoffice-qt + hunspell + vlc + samba4Full + + # thunderbird + ]; + }; + + # Allow unfree packages + nixpkgs.config.allowUnfree = true; + + + # List packages installed in system profile. To search, run: + # $ nix search wget + environment.systemPackages = with pkgs; [ + vim + wget + curl + git + gcc + ttf-tw-moe + noto-fonts-cjk-serif + ]; + + environment.etc."udisks2/mount_options.conf".text = '' [defaults] + udf_defaults=uid=$UID,gid=$GID,iocharset=utf8,unhide + ''; + + # Some programs need SUID wrappers, can be configured further or are + # started in user sessions. + # programs.mtr.enable = true; + # programs.gnupg.agent = { + # enable = true; + # enableSSHSupport = true; + # }; + programs.steam = { + enable = true; + remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play + dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server + }; + + # List services that you want to enable: + + # Enable the OpenSSH daemon. + # services.openssh.enable = true; + + # Open ports in the firewall. + # networking.firewall.allowedTCPPorts = [ ... ]; + # networking.firewall.allowedUDPPorts = [ ... ]; + # Or disable the firewall altogether. + # networking.firewall.enable = false; + + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It‘s perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "23.05"; # Did you read the comment? + +}