tvl-depot/system/modules/common.nix

134 lines
3.3 KiB
Nix
Raw Normal View History

2020-03-28 04:32:13 +01:00
{ config, lib, pkgs, ... }:
{
imports =
[
./xserver.nix
./fonts.nix
2020-03-28 04:32:13 +01:00
./emacs.nix
./sound.nix
2020-05-04 19:12:54 +02:00
./kernel.nix
2020-05-07 16:56:09 +02:00
/home/grfn/code/urb/urbos/system
2020-03-28 04:32:13 +01:00
];
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";
# };
# Set your time zone.
time.timeZone = "America/New_York";
environment.systemPackages = with pkgs; [
wget
vim
zsh
git
w3m
libnotify
file
];
# 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;
2020-05-08 17:57:47 +02:00
programs.ssh.startAgent = true;
2020-03-28 04:32:13 +01:00
# 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;
users.mutableUsers = true;
programs.zsh.enable = true;
environment.pathsToLink = [ "/share/zsh" ];
users.users.grfn = {
isNormalUser = true;
initialPassword = "password";
extraGroups = [
2020-03-29 18:49:08 +02:00
"wheel"
2020-03-28 04:32:13 +01:00
"networkmanager"
"audio"
2020-03-29 18:49:08 +02:00
"docker"
2020-03-28 04:32:13 +01:00
];
shell = pkgs.zsh;
};
# 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. Its 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 = "20.03"; # Did you read the comment?
nixpkgs.config.allowUnfree = true;
services.geoclue2.enable = true;
powerManagement = {
enable = true;
2020-03-29 18:49:08 +02:00
cpuFreqGovernor = lib.mkDefault "powersave";
2020-03-28 04:32:13 +01:00
powertop.enable = true;
};
# Hibernate on low battery
laptop.onLowBattery = {
enable = true;
action = "hibernate";
thresholdPercentage = 5;
};
nix = {
trustedUsers = [ "grfn" ];
2020-03-28 04:32:13 +01:00
autoOptimiseStore = true;
2020-05-04 19:18:10 +02:00
buildMachines = [{
hostName = "172.16.0.3";
sshUser = "griffin";
sshKey = "/home/grfn/.ssh/id_rsa";
system = "x86_64-darwin";
maxJobs = 4;
}];
distributedBuilds = true;
# gc = {
# automatic = true;
# dates = "
2020-05-08 17:57:15 +02:00
};
2020-05-08 17:57:33 +02:00
urbos.enable = true;
urbos.username = "grfn";
2020-05-08 17:57:15 +02:00
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"
'';
}