nixos-config/hosts/aarch64-linux/alastor/default.nix

181 lines
5.4 KiB
Nix
Raw Normal View History

2024-02-19 13:43:17 +01:00
{
config,
lib,
pkgs,
2024-03-18 22:00:13 +01:00
inputs,
...
}: {
imports = [
./hardware-configuration.nix
2024-03-18 22:00:13 +01:00
inputs.apple-silicon.nixosModules.apple-silicon-support
2024-03-18 08:56:51 +01:00
../../../common
#../../antivirus.nix
../../../modules/home-manager.nix
../../gc.nix
];
2024-02-19 13:43:17 +01:00
nixpkgs.config.allowUnfree = true;
2024-03-18 08:56:51 +01:00
hardware.asahi.peripheralFirmwareDirectory = ./firmware;
hardware.asahi.useExperimentalGPUDriver = true;
# TODO: this is UGLY
# only builds with `--impure` which SUCKS I HATE THIS RAAAH
hardware.asahi.experimentalGPUInstallMode = "replace";
2024-03-18 08:56:51 +01:00
hardware.asahi.withRust = true;
2024-04-13 20:43:41 +02:00
hardware.asahi.setupAsahiSound = true;
2024-03-18 08:56:51 +01:00
hardware.opengl.enable = true;
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = lib.mkForce false;
2024-02-19 13:43:17 +01:00
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
2024-03-18 08:56:51 +01:00
boot.loader.efi.canTouchEfiVariables = false;
2024-02-19 13:43:17 +01:00
2024-04-12 12:50:50 +02:00
services.pcscd.enable = true;
2024-03-18 08:56:51 +01:00
networking.hostName = "alastor"; # Define your hostname.
2024-02-19 13:43:17 +01:00
# Pick only one of the below networking options.
2024-03-18 08:56:51 +01:00
networking.wireless.iwd = {
2024-03-06 19:42:04 +01:00
enable = true;
2024-03-18 08:56:51 +01:00
settings.General.EnableNetworkConfiguration = true;
2024-03-06 19:42:04 +01:00
};
2024-03-28 14:00:26 +01:00
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
2024-02-19 13:43:17 +01:00
# Set your time zone.
time.timeZone = "Europe/Berlin";
2024-02-19 13:43:17 +01:00
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# useXkbConfig = true; # use xkb.options in tty.
# };
# Enable the X11 windowing system.
2024-03-18 22:00:13 +01:00
services.xserver.enable = true;
2024-04-09 14:15:12 +02:00
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
2024-02-19 13:43:17 +01:00
# Configure keymap in X11
2024-03-18 08:56:51 +01:00
# services.xserver.xkb.layout = "us";
2024-02-19 13:43:17 +01:00
# services.xserver.xkb.options = "eurosign:e,caps:escape";
# Enable CUPS to print documents.
# services.printing.enable = true;
# Enable sound.
sound.enable = true;
2024-02-19 13:43:17 +01:00
# hardware.pulseaudio.enable = true;
2024-04-13 20:43:41 +02:00
# hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
security.polkit.enable = true;
2024-04-12 12:50:50 +02:00
# services.pipewire = {
# enable = true;
# alsa.enable = true;
# alsa.support32Bit = true;
# pulse.enable = true;
# # If you want to use JACK applications, uncomment this
# jack.enable = true;
# };
2024-02-19 13:43:17 +01:00
# Enable touchpad support (enabled default in most desktopManager).
services.xserver.libinput.enable = true;
2024-02-19 13:43:17 +01:00
# Define a user account. Don't forget to set a password with passwd.
users.users.xqtc = {
isNormalUser = true;
extraGroups = ["wheel" "audio"]; # Enable sudo for the user.
2024-03-18 08:56:51 +01:00
packages = with pkgs; [
tree
];
2024-02-19 13:43:17 +01:00
shell = pkgs.nushell;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2024-03-18 08:56:51 +01:00
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
2024-02-19 13:43:17 +01:00
wget
2024-03-18 08:56:51 +01:00
#git
2024-02-19 13:43:17 +01:00
2024-03-18 08:56:51 +01:00
firefox
2024-03-18 08:56:51 +01:00
neovim
2024-02-19 13:43:17 +01:00
2024-03-18 08:56:51 +01:00
gcc13
2024-02-19 13:43:17 +01:00
2024-03-18 08:56:51 +01:00
cargo
rustc
2024-02-19 13:43:17 +01:00
2024-03-18 08:56:51 +01:00
wl-clipboard
xclip
2024-02-19 13:43:17 +01:00
2024-04-14 17:57:44 +02:00
sway
swaylock-effects
wmenu
foot
gnomeExtensions.appindicator
gnomeExtensions.tray-icons-reloaded
gnomeExtensions.blur-my-shell
2024-03-18 08:56:51 +01:00
jellyfin
jellyfin-web
jellyfin-ffmpeg
];
2024-04-14 17:57:44 +02:00
security.pam.services.swaylock = {};
services.udev.packages = with pkgs; [gnome.gnome-settings-daemon];
2024-02-19 23:47:30 +01:00
2024-02-19 13:43:17 +01:00
# 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;
};
services.resolved.enable = true;
2024-04-12 12:50:50 +02:00
services.mullvad-vpn.enable = true;
2024-02-19 13:43:17 +01:00
2024-03-18 08:56:51 +01:00
programs.dconf.enable = true;
2024-02-19 13:43:17 +01:00
# List services that you want to enable:
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Open ports in the firewall.
2024-03-18 08:56:51 +01:00
networking.firewall.allowedTCPPorts = [22];
2024-02-19 13:43:17 +01:00
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
2024-03-18 08:56:51 +01:00
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
# to actually do that.
2024-02-19 13:43:17 +01:00
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
2024-03-18 08:56:51 +01:00
system.stateVersion = "24.05"; # Did you read the comment?
nix.settings.experimental-features = ["nix-command" "flakes"];
2024-02-19 13:43:17 +01:00
}