Personal-use NixOS configuration
0
fork

Configure Feed

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

Update flake and format

encode42 57afb798 f91e3cd5

+25 -13
+7 -7
flake.lock
··· 44 44 }, 45 45 "locked": { 46 46 "dir": "pkgs/firefox-addons", 47 - "lastModified": 1754138575, 48 - "narHash": "sha256-6foT7Sflve4XuLnBKkgN9b9IP4FvdoBA2XQ2IyXmbog=", 47 + "lastModified": 1754512310, 48 + "narHash": "sha256-gXE5lTYMOhpDJo+siLXW/3BzySPmLMD12GVB1QFVbyw=", 49 49 "owner": "rycee", 50 50 "repo": "nur-expressions", 51 - "rev": "27c945a6450d42c62f7e41019d7931b426bb786f", 51 + "rev": "2008f9aa7a5ccde48bfc1de5a919be5898da09c2", 52 52 "type": "gitlab" 53 53 }, 54 54 "original": { ··· 253 253 "lix": { 254 254 "flake": false, 255 255 "locked": { 256 - "lastModified": 1751235704, 257 - "narHash": "sha256-J4ycLoXHPsoBoQtEXFCelL4xlq5pT8U9tNWNKm43+YI=", 258 - "rev": "1d7368585eebaa2c4bdbcb88fe600cfb2239b2c6", 256 + "lastModified": 1753223229, 257 + "narHash": "sha256-tkT4aCZZE6IEmjYotOzKKa2rV3pGpH3ZREeQn7ACgdU=", 258 + "rev": "7ac20fc47cf2f1b7469c7a2f379e5a3a51a6789a", 259 259 "type": "tarball", 260 - "url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/1d7368585eebaa2c4bdbcb88fe600cfb2239b2c6.tar.gz?rev=1d7368585eebaa2c4bdbcb88fe600cfb2239b2c6" 260 + "url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/7ac20fc47cf2f1b7469c7a2f379e5a3a51a6789a.tar.gz?rev=7ac20fc47cf2f1b7469c7a2f379e5a3a51a6789a" 261 261 }, 262 262 "original": { 263 263 "type": "tarball",
+17 -5
hosts/decryption/hardware-configuration.nix
··· 1 1 # Do not modify this file! It was generated by ‘nixos-generate-config’ 2 2 # and may be overwritten by future invocations. Please make changes 3 3 # to /etc/nixos/configuration.nix instead. 4 - { config, lib, pkgs, modulesPath, ... }: 4 + { 5 + config, 6 + lib, 7 + pkgs, 8 + modulesPath, 9 + ... 10 + }: 5 11 6 12 { 7 - imports = 8 - [ (modulesPath + "/installer/scan/not-detected.nix") 9 - ]; 13 + imports = [ 14 + (modulesPath + "/installer/scan/not-detected.nix") 15 + ]; 10 16 11 - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "sd_mod" ]; 17 + boot.initrd.availableKernelModules = [ 18 + "nvme" 19 + "xhci_pci" 20 + "ahci" 21 + "usb_storage" 22 + "sd_mod" 23 + ]; 12 24 boot.initrd.kernelModules = [ ]; 13 25 boot.kernelModules = [ "kvm-amd" ]; 14 26 boot.extraModulePackages = [ ];
+1 -1
lib/mkSystem.nix
··· 6 6 { 7 7 name, 8 8 system, 9 - isLaptop ? false 9 + isLaptop ? false, 10 10 }: 11 11 12 12 inputs.nixpkgs.lib.nixosSystem {