26 lines
761 B
Plaintext
26 lines
761 B
Plaintext
|
# The ansible.nix file is for the Hyperling Ansible project to maintain. It
|
||
|
# should never be altered by hand unless Ansible has been turned off cron.
|
||
|
# https://github.com/Hyperling/ansible
|
||
|
{ config, pkgs, nix, ... }:
|
||
|
|
||
|
{
|
||
|
# tasks/general/software/swap.yml
|
||
|
# Use general.ini to set up the swap commands and this should be generated.
|
||
|
swapDevices = [ { device = "/swapfile"; } ];
|
||
|
|
||
|
###
|
||
|
# TBD
|
||
|
##
|
||
|
# Should this file include others? Or use blockinfile? searching for the
|
||
|
# headers below and then add their contents if they are wanted? Doing more
|
||
|
# includes might get messy, would probably want an entire ansible folder
|
||
|
# rather than adding more stuff to the roor /etc/nixos directory.
|
||
|
###
|
||
|
|
||
|
## General ##
|
||
|
|
||
|
## Workstation ##
|
||
|
|
||
|
## Server ##
|
||
|
}
|