dotfiles/provision/hosts/shivan/configuration.nix

47 lines
976 B
Nix
Raw Normal View History

2024-03-10 18:49:02 -07:00
{ config, pkgs, user, lib, ... }:
{
imports = [
];
2024-08-23 22:33:46 -07:00
# Use performance governor for sweet gaming performance!
powerManagement.cpuFreqGovernor = "performance";
2024-03-10 18:49:02 -07:00
# Set networking options
networking.hostName = "shivan";
networking.firewall.checkReversePath = "loose";
networking.firewall.enable = false;
# Enable docker
virtualisation.docker.enable = true;
2024-08-23 22:33:46 -07:00
virtualisation.docker.storageDriver = "btrfs";
2024-03-10 18:49:02 -07:00
environment.systemPackages = with pkgs; [
];
2024-03-10 18:49:02 -07:00
# Modules
2024-03-10 18:49:02 -07:00
modules = {
desktop = {
2024-10-24 20:36:57 -07:00
enable = true;
2024-10-20 00:32:46 -07:00
gnome.enable = true;
2024-03-10 18:49:02 -07:00
};
devel = {
engineering.enable = true;
notes.enable = true;
tooling.enable = true;
};
programs = {
kitty.enable = true;
2024-09-30 10:35:46 -07:00
chezmoi.apply = true;
2024-03-10 18:49:02 -07:00
};
services = {
peripherals.enable = true;
samba-client.enable = true;
virt-manager.enable = false;
};
system = {
ssh.enable = true;
terminal.enable = true;
2024-07-21 17:28:06 -07:00
};
};
2024-03-10 18:49:02 -07:00
}