From 55ee036fd7ebed24097c8da1ca8a0b0829264670 Mon Sep 17 00:00:00 2001 From: Emile Date: Sat, 9 Mar 2024 22:56:01 +0100 Subject: big bang --- nix/hosts/chusuk/README.md | 3 + nix/hosts/chusuk/configuration.nix | 141 ++++++++++++++++++++++++++++ nix/hosts/chusuk/hardware-configuration.nix | 31 ++++++ 3 files changed, 175 insertions(+) create mode 100644 nix/hosts/chusuk/README.md create mode 100644 nix/hosts/chusuk/configuration.nix create mode 100644 nix/hosts/chusuk/hardware-configuration.nix (limited to 'nix/hosts/chusuk') diff --git a/nix/hosts/chusuk/README.md b/nix/hosts/chusuk/README.md new file mode 100644 index 0000000..7dcab5f --- /dev/null +++ b/nix/hosts/chusuk/README.md @@ -0,0 +1,3 @@ +# chusuk + +t480 diff --git a/nix/hosts/chusuk/configuration.nix b/nix/hosts/chusuk/configuration.nix new file mode 100644 index 0000000..c9c52e7 --- /dev/null +++ b/nix/hosts/chusuk/configuration.nix @@ -0,0 +1,141 @@ +# 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 + ]; + + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; + + # Set your time zone. + time.timeZone = "Europe/Amsterdam"; + + networking = { + hostName = "chusuk"; # Define your hostname. + wireless.enable = true; # Enables wireless support via wpa_supplicant. + + # The global useDHCP flag is deprecated, therefore explicitly set to false here. + # Per-interface useDHCP will be mandatory in the future, so this generated config + # replicates the default behaviour. + useDHCP = false; + interfaces.enp0s31f6.useDHCP = true; + interfaces.wlp3s0.useDHCP = true; + + # Open ports in the firewall. + # networking.firewall.allowedTCPPorts = [ ... ]; + # networking.firewall.allowedUDPPorts = [ ... ]; + # Or disable the firewall altogether. + firewall.enable = true; + }; + + # 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"; + }; + + # Define a user account. Don't forget to set a password with ‘passwd’. + users.users.emile = { + isNormalUser = true; + extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. + }; + users.users.root = { + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPZi43zHEsoWaQomLGaftPE5k0RqVrZyiTtGqZlpWsew" + ]; + }; + + # List packages installed in system profile. To search, run: + # $ nix search wget + environment = { + pathsToLink = [ "/libexec" ]; + systemPackages = with pkgs; [ + kitty + vim helix + wget htop eza fd du-dust + tailscale + cryptsetup + firefox + + networkmanager + + ###################################3 + # wayland foo + waybar + hyprpaper # wallpaper + + tofi rofi + dolphin + mako + + pipewire + wireplumber + + xdg-desktop-portal + ###################################3 + ]; + }; + + # 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 = { + mosh.enable = true; + + hyprland = { + enable = true; + }; + }; + + # List services that you want to enable: + + # Enable the OpenSSH daemon. + services = { + openssh.enable = true; + tailscale.enable = true; + xserver = { + enable = true; + desktopManager = { + xterm.enable = false; + }; + + displayManager = { + defaultSession = "none+i3"; + }; + + windowManager.i3 = { + enable = true; + extraPackages = with pkgs; [ + dmenu i3status i3lock i3blocks + ]; + }; + }; + }; + + # 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 = "21.05"; # Did you read the comment? + +} + diff --git a/nix/hosts/chusuk/hardware-configuration.nix b/nix/hosts/chusuk/hardware-configuration.nix new file mode 100644 index 0000000..6b34e3b --- /dev/null +++ b/nix/hosts/chusuk/hardware-configuration.nix @@ -0,0 +1,31 @@ +# 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 = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/22445c0e-71bd-488f-88e5-0abc60441e58"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/29BB-5D28"; + fsType = "vfat"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/d79efda2-1190-428c-8598-6911793175fb"; } + ]; + + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; +} -- cgit 1.4.1