nixos/hosts/sakotop/configuration.nix
2023-07-31 23:12:45 +03:00

109 lines
2.7 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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, lib, inputs, outputs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
];
# required for hostname specific configurations
networking.hostName = "sakotop"; # Define your hostname.
modules = {
desktop = {
kitty.enable = true;
xmonad.enable = false;
dwm = {
enable = true;
dwmblocks.enable = true;
};
dunst.enable = true;
browsers = {
qutebrowser.enable = true;
firefox.enable = true;
};
apps = {
nemo.enable = true;
keepassxc.enable = true;
nicotineplus.enable = true;
transmission.enable = true;
calirbe.enable = true;
};
chat = {
discord.enable = true;
};
game = {
wine.enable = true;
lutris.enable = true;
steam.enable = true;
};
media = {
gimp.enable = true;
blender.enable = true;
mpv.enable = true;
};
};
hardware = {
nvidia.enable = true;
intelgputools.enable = true;
pipewire.enable = true;
bluetooth.enable = true;
};
dev = {
editors = {
nvim.enable = true;
vscode.enable = false;
};
cc.enable = true;
javascript.enable = true;
python.enable = true;
rust.enable = true;
# too heavy
unity.enable = false;
projects = {
sakoEngine.enable = true;
};
};
shell = {
nix = {
# makes nix search nixpkgs <example>
# ALOT faster
search.enable = true;
# optimize store
optimize.enable = true;
};
zsh.enable = true;
newsboat.enable = true;
ranger.enable = true;
};
media = {
mpd.enable = true;
ncmpcpp.enable = true;
};
};
# Enable CUPS to print documents.
# services.printing.enable = true;
# TODO(sako):: put this in different files
# Define a user account. Don't forget to set a password with passwd.
users.users.sako= {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ]; # Enable sudo for the user.
};
services.xserver.videoDrivers = [ "nvidia" ];
# 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;
}