feat: new setup for work laptop

This commit is contained in:
Jet 2026-04-23 20:18:40 -07:00
parent 572a731057
commit 17328f7089
No known key found for this signature in database
17 changed files with 1063 additions and 957 deletions

View file

@ -0,0 +1,21 @@
{ ... }:
{
imports = [
../../configuration.nix
./hardware-configuration.nix
];
networking.hostName = "framework-work";
fileSystems."/tmp" = {
device = "tmpfs";
fsType = "tmpfs";
options = [
"size=8G"
"mode=1777"
"nosuid"
"nodev"
];
};
}