mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
45 lines
843 B
Nix
45 lines
843 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
{
|
|
imports = [
|
|
./steam-deck.nix
|
|
./syncthing.nix
|
|
];
|
|
|
|
# Set networking options
|
|
networking.hostName = "bulwark";
|
|
networking.firewall.checkReversePath = "loose";
|
|
networking.firewall.enable = false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
];
|
|
|
|
# Secrets
|
|
age.secrets."wireguard/bulwark".file = ../../secrets/wireguard/bulwark.age;
|
|
|
|
# Modules
|
|
modules = {
|
|
desktop = {
|
|
browser.enable = true;
|
|
gnome.enable = true;
|
|
};
|
|
devel = {
|
|
notes.enable = true;
|
|
};
|
|
gaming = {
|
|
emulation.enable = true;
|
|
steam.enable = true;
|
|
};
|
|
programs = {
|
|
chezmoi.apply = true;
|
|
kitty.enable = true;
|
|
};
|
|
services = {
|
|
samba-client.enable = true;
|
|
};
|
|
system = {
|
|
ssh.enable = true;
|
|
terminal.enable = true;
|
|
};
|
|
};
|
|
}
|