11 lines
165 B
Nix
11 lines
165 B
Nix
|
# Core system configuration
|
||
|
{ ... }:
|
||
|
{
|
||
|
my.system = {
|
||
|
# Printers are hell, but so is the unability to print
|
||
|
printing = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|