dotfiles/provision/hosts/bulwark/configuration.nix

48 lines
951 B
Nix
Raw Normal View History

{ config, lib, pkgs, user, ... }:
2023-08-21 21:05:02 -07:00
{
2023-11-18 17:19:21 -08:00
imports = [
2023-10-13 21:06:28 -07:00
./steam-deck.nix
./syncthing.nix
2023-09-02 11:06:41 -07:00
];
2023-08-21 21:05:02 -07:00
# Set networking options
networking.hostName = "bulwark";
networking.firewall.checkReversePath = "loose";
networking.firewall.enable = false;
environment.systemPackages = with pkgs; [
];
# Secrets
2024-07-21 16:37:12 -07:00
age.secrets."wireguard/bulwark".file = ../../secrets/wireguard/bulwark.age;
2024-07-21 13:07:07 -07:00
# Modules
2023-08-21 21:05:02 -07:00
modules = {
desktop = {
browser.enable = true;
gnome = {
enable = true;
2024-05-03 23:59:45 -07:00
wallpaper = "file://${../../../resources/img/wallpapers/gruvbox/bulwark.png}";
};
2023-08-21 21:05:02 -07:00
};
2023-09-02 09:04:05 -07:00
devel = {
notes.enable = true;
2023-09-02 09:04:05 -07:00
};
2023-08-21 21:05:02 -07:00
gaming = {
emulation.enable = true;
2024-09-30 10:15:37 -07:00
steam.enable = true;
2023-08-21 21:05:02 -07:00
};
programs = {
2024-09-30 10:35:46 -07:00
chezmoi.apply = true;
kitty.enable = true;
};
services = {
samba-client.enable = true;
};
system = {
ssh.enable = true;
terminal.enable = true;
2024-07-21 17:28:06 -07:00
};
};
2023-08-21 21:05:02 -07:00
}