This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/nix/personal-machine.nix

128 lines
2 KiB
Nix
Raw Normal View History

2020-10-09 22:42:12 -05:00
{ config, pkgs, ... }:
{
imports = [ /etc/nixos/hardware-configuration.nix ];
2020-10-16 15:00:11 -05:00
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
2020-10-09 22:42:12 -05:00
};
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };
};
};
networking = {
networkmanager.enable = true;
hostName = "third.lyte.dev";
};
i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "us";
time.timeZone = "America/Chicago";
environment = {
systemPackages = with pkgs; [
2020-10-16 15:00:11 -05:00
fish bash tmux
vim neovim
networkmanager
wget curl w3m
git
kitty
pciutils usbutils binutils
sway waybar mako wl-clipboard
firefox-devedition-bin
ripgrep sd
nodejs python3
fzf
fortune
dmenu
ranger
rsync
pass
brightnessctl
vulkan-tools # TODO: vulkan?
htop
rustup
clang
pavucontrol
pamixer
strongswan
gnumake
elixir
docker docker-compose
postgresql
2020-10-09 22:42:12 -05:00
];
variables = {
EDITOR = "nvim";
};
};
fonts.fonts = with pkgs; [ iosevka ];
2020-10-16 15:00:11 -05:00
virtualisation.docker.enable = true;
2020-10-09 22:42:12 -05:00
hardware = {
2020-10-16 15:00:11 -05:00
bluetooth = {
enable = true;
};
2020-10-09 22:42:12 -05:00
pulseaudio = {
enable = true;
support32Bit = true;
2020-10-16 15:00:11 -05:00
package = pkgs.pulseaudioFull;
# extraConfig = "
# load-module module-switch-on-connect
# ";
2020-10-09 22:42:12 -05:00
};
opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
extraPackages = with pkgs; [
vaapiIntel
vaapiVdpau
libvdpau-va-gl
];
};
};
programs = {
fish.enable = true;
mtr.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
};
};
services = {
openssh.enable = true;
};
networking.firewall.enable = false;
sound.enable = true;
users.users.daniel = {
isNormalUser = true;
2020-10-16 15:00:11 -05:00
extraGroups = [ "wheel" "docker" ];
2020-10-09 22:42:12 -05:00
shell = pkgs.fish;
home = "/home/daniel/.home";
2020-10-16 15:00:11 -05:00
packages = with pkgs; [
steam
pulsemixer
file
appimage-run
];
2020-10-09 22:42:12 -05:00
};
system.stateVersion = "20.03";
}