this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hello Attlerock!

Ben C 03410aaf d7cd9b1e

+69 -14
+14 -14
flake.lock
··· 449 449 ] 450 450 }, 451 451 "locked": { 452 - "lastModified": 1775223910, 453 - "narHash": "sha256-QRdehpSKTttlZe0oY2n5OCfZeCMrHkKNlWF1LJzO9tY=", 452 + "lastModified": 1775320414, 453 + "narHash": "sha256-pIDPHus8udcxO4lT+zUULBfvue2D08E73abzVEJNE+8=", 454 454 "owner": "nix-community", 455 455 "repo": "home-manager", 456 - "rev": "f68887a4c11e662b0eb0323d34b3fb9506226719", 456 + "rev": "5ee3b3ef63e469c84639c2c9e282726352c86069", 457 457 "type": "github" 458 458 }, 459 459 "original": { ··· 749 749 "systems": "systems" 750 750 }, 751 751 "locked": { 752 - "lastModified": 1774802402, 753 - "narHash": "sha256-L1UJ/zxKTyyaGGmytH6OYlgQ0HGSMhvPkvU+iz4Mkb8=", 752 + "lastModified": 1775307257, 753 + "narHash": "sha256-y9hEecHH4ennFwIcw1n480YCGh73DkEmizmQnyXuvgg=", 754 754 "owner": "nix-community", 755 755 "repo": "nixvim", 756 - "rev": "cbd8536a05d1aae2593cb5c9ace1010c8c5845cb", 756 + "rev": "2e008bb941f72379d5b935d5bfe70ed8b7c793ff", 757 757 "type": "github" 758 758 }, 759 759 "original": { ··· 978 978 "sqlite-lib-src": "sqlite-lib-src" 979 979 }, 980 980 "locked": { 981 - "lastModified": 1775212952, 982 - "narHash": "sha256-zhfQlGEWLFh0QehOOzhWVGHEUvMrXhCJsQ+MKVbpAX8=", 981 + "lastModified": 1775308091, 982 + "narHash": "sha256-XcuRwqocePraEWXceeQm0sRtjUpmHjt66NXmtTk3Njg=", 983 983 "ref": "refs/heads/master", 984 - "rev": "36685bea67871a693518a947eb0e067581056c9f", 985 - "revCount": 2166, 984 + "rev": "163733560fc9d85baaa0facbba531c1bab78eb20", 985 + "revCount": 2168, 986 986 "type": "git", 987 987 "url": "https://tangled.org/tangled.org/core" 988 988 }, ··· 999 999 "nixpkgs-fetch-deno": "nixpkgs-fetch-deno" 1000 1000 }, 1001 1001 "locked": { 1002 - "lastModified": 1775079903, 1003 - "narHash": "sha256-BlQRsIeXPOm1q64NdryAOvPzIJN6wfIo0xdpSZaFkL8=", 1002 + "lastModified": 1775292762, 1003 + "narHash": "sha256-6jSs7wNvVWi9kcSZayLkn7In+Q/78cK6sTH0jryMNGQ=", 1004 1004 "ref": "refs/heads/main", 1005 - "rev": "bdb200a30c82168d7e98ce6679baef17de750bcc", 1006 - "revCount": 272, 1005 + "rev": "add1ff176b0e401c8d8ceeab1443b492974981ac", 1006 + "revCount": 273, 1007 1007 "type": "git", 1008 1008 "url": "https://tangled.org/tranquil.farm/tranquil-pds" 1009 1009 },
+55
nixosConfigurations/attlerock.nix
··· 1 + { 2 + lib, 3 + inputs, 4 + outputs, 5 + ... 6 + }: { 7 + system = "x86_64-linux"; 8 + 9 + modules = [ 10 + outputs.nixosModules.default 11 + inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t430 12 + { 13 + home-manager.users.bean.home.stateVersion = "25.05"; 14 + system.stateVersion = "25.05"; 15 + networking.hostName = "attlerock"; 16 + 17 + users.users = let 18 + secureRoot = "/nix/persist/secure"; 19 + in { 20 + bean.hashedPasswordFile = "${secureRoot}/hashed-passwd"; 21 + root.hashedPasswordFile = "${secureRoot}/hashed-passwd"; 22 + }; 23 + 24 + cow = { 25 + bean.sudoer = true; 26 + lanzaboote.enable = true; 27 + role-laptop.enable = true; 28 + imperm.enable = true; 29 + disks = { 30 + enable = true; 31 + swap = true; 32 + }; 33 + }; 34 + 35 + boot.initrd.availableKernelModules = [ 36 + "xhci_pci" 37 + "ehci_pci" 38 + "ahci" 39 + "usb_storage" 40 + "sd_mod" 41 + "sr_mod" 42 + "sdhci_pci" 43 + "iwlwifi" 44 + "ec_sys" 45 + "thinkpad_acpi" 46 + ]; 47 + boot.initrd.kernelModules = []; 48 + boot.kernelModules = ["kvm-intel"]; 49 + boot.extraModulePackages = []; 50 + 51 + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 52 + hardware.cpu.intel.updateMicrocode = true; 53 + } 54 + ]; 55 + }