From 57430ff21ebbee3a4127cb3e632e72e6ebff99d2 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sun, 27 Nov 2022 09:03:31 -0500 Subject: [PATCH] toxapex Signed-off-by: Xe Iaso --- flake.nix | 95 +++++++++++++++ .../macos-rosetta/default.nix | 0 hosts/luxray/default.nix | 2 +- hosts/toxapex/default.nix | 111 ++++++++++++++++++ hosts/toxapex/hardware-configuration.nix | 36 ++++++ 5 files changed, 243 insertions(+), 1 deletion(-) rename hosts/luxray/rosetta.nix => hardware/macos-rosetta/default.nix (100%) create mode 100644 hosts/toxapex/default.nix create mode 100644 hosts/toxapex/hardware-configuration.nix diff --git a/flake.nix b/flake.nix index 6f9a66c..b761e93 100644 --- a/flake.nix +++ b/flake.nix @@ -94,6 +94,101 @@ }; nixosConfigurations = { + toxapex = let + pkgs = nixpkgs.legacyPackages."aarch64-linux"; in nixpkgs.lib.nixosSystem rec { + system = "aarch64-linux"; + modules = [ + home-manager.nixosModules.home-manager + + ({ ... } :{ + imports = [./hosts/toxapex]; + }) + + ({ config, ... }: { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + + nixpkgs.overlays = [ emacs-overlay.overlay ]; + + networking.hostName = "toxapex"; + networking.nameservers = [ "100.100.100.100" ]; + networking.search = [ "shark-harmonic.ts.net" ]; + + nix.package = pkgs.nixVersions.stable; + nix.extraOptions = '' + experimental-features = nix-command flakes + ''; + + users.users.xe = { + extraGroups = [ + "wheel" + "docker" + "audio" + "plugdev" + "libvirtd" + "adbusers" + "dialout" + "within" + ]; + shell = pkgs.fish; + isNormalUser = true; + group = "xe"; + }; + + environment.systemPackages = with pkgs; [ mosh flyctl ]; + virtualisation.docker.enable = true; + + services.tailscale.enable = true; + + home-manager.users.xe = { lib, ... }: + let + name = "Xe Iaso"; + email = "me@xeiaso.net"; + commitTemplate = pkgs.writeTextFile { + name = "xe-commit-template"; + text = '' + Signed-off-by: ${name} <${email}> + ''; + }; + in { + imports = [ ./common/home-manager ]; + + within = { + emacs.enable = true; + fish.enable = true; + neofetch.enable = true; + vim.enable = true; + tmux.enable = true; + }; + + services.emacs.enable = lib.mkForce false; + programs.direnv.enable = true; + programs.direnv.nix-direnv.enable = true; + + programs.git = { + package = pkgs.gitAndTools.gitFull; + enable = true; + userName = name; + userEmail = email; + ignores = [ "*~" "*.swp" "*.#" ]; + delta.enable = true; + extraConfig = { + commit.template = "${commitTemplate}"; + core.editor = "vim"; + color.ui = "auto"; + credential.helper = "store --file ~/.git-credentials"; + format.signoff = true; + init.defaultBranch = "main"; + protocol.keybase.allow = "always"; + pull.rebase = "true"; + push.default = "current"; + }; + }; + }; + }) + ]; + }; + # work VM luxray = let pkgs = nixpkgs.legacyPackages."aarch64-linux"; in nixpkgs.lib.nixosSystem rec { diff --git a/hosts/luxray/rosetta.nix b/hardware/macos-rosetta/default.nix similarity index 100% rename from hosts/luxray/rosetta.nix rename to hardware/macos-rosetta/default.nix diff --git a/hosts/luxray/default.nix b/hosts/luxray/default.nix index e6a9f24..3482dad 100644 --- a/hosts/luxray/default.nix +++ b/hosts/luxray/default.nix @@ -4,7 +4,7 @@ imports = [ ./hardware-configuration.nix - ./rosetta.nix + ../../hardware/macos-rosetta ]; boot.loader.systemd-boot.enable = true; diff --git a/hosts/toxapex/default.nix b/hosts/toxapex/default.nix new file mode 100644 index 0000000..fca1e9d --- /dev/null +++ b/hosts/toxapex/default.nix @@ -0,0 +1,111 @@ +# 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, ... }: + +{ + imports = + [ # Include the results of the hardware scan. + ./hardware-configuration.nix + ../../hardware/macos-rosetta + ]; + + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # networking.hostName = "nixos"; # Define your hostname. + # Pick only one of the below networking options. + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + # networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. + + # Set your time zone. + # time.timeZone = "Europe/Amsterdam"; + + # 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 xkbOptions in tty. + # }; + + # Enable the X11 windowing system. + # services.xserver.enable = true; + + + + + # Configure keymap in X11 + # services.xserver.layout = "us"; + # services.xserver.xkbOptions = { + # "eurosign:e"; + # "caps:escape" # map caps to escape. + # }; + + # Enable CUPS to print documents. + # services.printing.enable = true; + + # Enable sound. + # sound.enable = true; + # hardware.pulseaudio.enable = 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.alice = { + # isNormalUser = true; + # extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + # packages = with pkgs; [ + # firefox + # thunderbird + # ]; + # }; + + # List packages installed in system profile. To search, run: + # $ nix search wget + # environment.systemPackages = with pkgs; [ + # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + # wget + # ]; + + # 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; + # }; + + # 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; + + # 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 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? + +} + diff --git a/hosts/toxapex/hardware-configuration.nix b/hosts/toxapex/hardware-configuration.nix new file mode 100644 index 0000000..6ed3f35 --- /dev/null +++ b/hosts/toxapex/hardware-configuration.nix @@ -0,0 +1,36 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = [ ]; + + boot.initrd.availableKernelModules = [ "virtio_pci" "xhci_pci" "usb_storage" "usbhid" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/986c2ef5-666a-4416-8af9-47ecc9e11bd6"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/ACC3-7159"; + fsType = "vfat"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/4ff0ab5c-8353-4898-9fcc-055041347518"; } + ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp0s1.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; +}