Compare commits

...

2 Commits

Author SHA1 Message Date
2e9e92fbdd
build(nix): update flake.lock
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m2s
2024-07-01 22:44:27 -05:00
7d3b12bea9
feat(host/orion): use latest linux kernel 2024-07-01 22:41:24 -05:00
2 changed files with 10 additions and 9 deletions

18
flake.lock generated
View File

@ -156,11 +156,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1719733833, "lastModified": 1719864345,
"narHash": "sha256-6h2EqZU9bL9rHlXE+2LCBgnDImejzbS+4dYsNDDFlkY=", "narHash": "sha256-e4Pw+30vFAxuvkSTaTypd9zYemB/QlWcH186dsGT+Ms=",
"owner": "nix-community", "owner": "nix-community",
"repo": "disko", "repo": "disko",
"rev": "d185770ea261fb5cf81aa5ad1791b93a7834d12c", "rev": "544a80a69d6e2da04e4df7ec8210a858de8c7533",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -391,11 +391,11 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1719825627, "lastModified": 1719856074,
"narHash": "sha256-yg/wyUimpGITpeyx1SAzoV85dX2XN4WJ5Za0z+offWY=", "narHash": "sha256-40tpZ6YQJpdZmbZc1R41eD+Ga565Wszewc16uZDDxRk=",
"owner": "nixos", "owner": "nixos",
"repo": "nix", "repo": "nix",
"rev": "10c9764c27b881b5d9c85d176388ce9cd9394036", "rev": "b01b60f08ca442bc0cedfe8ada8774f0f5e9b3f9",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -657,11 +657,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1719818579, "lastModified": 1719854822,
"narHash": "sha256-utEU8E5XVQzGTiyE1oRPj9fcn5xR/renZnF5EF1jTis=", "narHash": "sha256-CZ5kWwetSH5mAb+rLOGugmuw8o97tCJ2T3tLOKwyia0=",
"owner": "Alexays", "owner": "Alexays",
"repo": "Waybar", "repo": "Waybar",
"rev": "99971556178ae504b7ba7ab559952f781925f7da", "rev": "034760e8b62ccd3901022e9c5172e532f366cb21",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -8,6 +8,7 @@
systemd-boot.enable = true; systemd-boot.enable = true;
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
kernelPackages = pkgs.linuxPackages_latest;
kernelModules = [ "kvm-intel" ]; kernelModules = [ "kvm-intel" ];
kernelParams = [ "audit=1" ]; kernelParams = [ "audit=1" ];
extraModulePackages = [ ]; extraModulePackages = [ ];