62c70dab19
The diff shows comprehensive code cleanup and formatting improvements across 18 files, including cleaner argument structures, additional package configurations, and improved formatting in the `home/terminal/software/git.nix` hook script.
14 lines
227 B
Nix
14 lines
227 B
Nix
{...}: {
|
|
imports = [
|
|
./overlay.nix
|
|
./cisco.nix
|
|
./himmelblau.nix
|
|
./mdatp.nix
|
|
];
|
|
|
|
# Create the work directory for the user
|
|
systemd.tmpfiles.rules = [
|
|
"d /home/someone/work 0755 someone users -"
|
|
];
|
|
}
|