From 3fc1143a04da49a92c3663813c6a0c1e8ccd477f Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Tue, 29 Sep 2020 23:42:59 -0400 Subject: feat(gs/system): Init mugwump Init the config for mugwump, a NUC that I bought from ncl and which I'm going to use as a simple home server and ssh bastion box. Since this is the first time I've set up a server using my nixos config, this also moves a bunch of desktop (xserver, audio, etc.) related config out of modules/common.nix and into a new modules/desktop.nix. Coming soon: nixos-rebuild switch --target, but in the depot! Change-Id: I67bd5ba6e3c26f80f77058af186fd41cc245d5d2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2016 Reviewed-by: glittershark Tested-by: BuildkiteCI --- .../glittershark/system/system/modules/common.nix | 67 ++-------------------- 1 file changed, 6 insertions(+), 61 deletions(-) (limited to 'users/glittershark/system/system/modules/common.nix') diff --git a/users/glittershark/system/system/modules/common.nix b/users/glittershark/system/system/modules/common.nix index 884f0a9a7d..a3f2a06d38 100644 --- a/users/glittershark/system/system/modules/common.nix +++ b/users/glittershark/system/system/modules/common.nix @@ -6,30 +6,19 @@ let in -{ - imports = - [ - ./xserver.nix - ./fonts.nix - ./sound.nix - ./kernel.nix - ./rtlsdr.nix - ]; +with lib; +{ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.useDHCP = false; networking.networkmanager.enable = true; - # Select internationalisation properties. - # i18n = { - # consoleFont = "Lat2-Terminus16"; - # consoleKeyMap = "us"; - # defaultLocale = "en_US.UTF-8"; - # }; + i18n = { + defaultLocale = "en_US.UTF-8"; + }; - # Set your time zone. time.timeZone = "America/New_York"; environment.systemPackages = with pkgs; [ @@ -44,30 +33,11 @@ in depot.users.glittershark.system.system.rebuilder ]; - # 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; - # pinentryFlavor = "gnome3"; - # }; - - programs.nm-applet.enable = true; - - services.openssh.enable = true; programs.ssh.startAgent = true; - # Open ports in the firewall. - # networking.firewall.allowedTCPPorts = [ ... ]; - # networking.firewall.allowedUDPPorts = [ ... ]; - # Or disable the firewall altogether. - networking.firewall.enable = false; - - # Enable CUPS to print documents. - # services.printing.enable = true; + networking.firewall.enable = mkDefault false; users.mutableUsers = true; programs.zsh.enable = true; @@ -94,20 +64,6 @@ in nixpkgs.config.allowUnfree = true; - services.geoclue2.enable = true; - - powerManagement = { - enable = true; - cpuFreqGovernor = lib.mkDefault "powersave"; - powertop.enable = true; - }; - # Hibernate on low battery - laptop.onLowBattery = { - enable = true; - action = "hibernate"; - thresholdPercentage = 5; - }; - nix = { trustedUsers = [ "grfn" ]; autoOptimiseStore = true; @@ -139,15 +95,4 @@ in options = "--delete-older-than 30d"; }; }; - - services.udev.extraRules = '' - # UDEV rules for Teensy USB devices - ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", ENV{ID_MM_DEVICE_IGNORE}="1" - ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789A]?", ENV{MTP_NO_PROBE}="1" - SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789ABCD]?", MODE:="0666" - KERNEL=="ttyACM*", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="04[789B]?", MODE:="0666" - ''; - - # Necessary to get steam working - hardware.opengl.driSupport32Bit = true; } -- cgit 1.4.1