This commit is contained in:
mjallen18
2026-02-03 10:20:56 -06:00
parent f856076452
commit aa7fc9c228
8 changed files with 18 additions and 16 deletions

20
flake.lock generated
View File

@@ -171,16 +171,16 @@
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
}, },
"locked": { "locked": {
"lastModified": 1767634391, "lastModified": 1768764703,
"narHash": "sha256-owcSz2ICqTSvhBbhPP+1eWzi88e54rRZtfCNE5E/wwg=", "narHash": "sha256-5ulSDyOG1U+1sJhkJHYsUOWEsmtLl97O0NTVMvgIVyc=",
"owner": "LnL7", "owner": "nix-darwin",
"repo": "nix-darwin", "repo": "nix-darwin",
"rev": "08585aacc3d6d6c280a02da195fdbd4b9cf083c2", "rev": "0fc4e7ac670a0ed874abacf73c4b072a6a58064b",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "LnL7", "owner": "nix-darwin",
"ref": "nix-darwin-25.11", "ref": "master",
"repo": "nix-darwin", "repo": "nix-darwin",
"type": "github" "type": "github"
} }
@@ -1095,16 +1095,16 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1764491476, "lastModified": 1765934234,
"narHash": "sha256-E4rtgPS7fntINb6fVJ5qQdkhfbZn8pzMYNdmiXqZmCo=", "narHash": "sha256-pJjWUzNnjbIAMIc5gRFUuKCDQ9S1cuh3b2hKgA7Mc4A=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "54f09efd2ca0dd5bb9c5fafc89573ab3ac44701d", "rev": "af84f9d270d404c17699522fab95bbf928a2d92f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixpkgs-25.11-darwin", "ref": "nixpkgs-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

@@ -62,7 +62,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
darwin.url = "github:LnL7/nix-darwin/nix-darwin-25.11"; darwin.url = "github:nix-darwin/nix-darwin/master";
nix-homebrew.url = "github:zhaofengli/nix-homebrew"; nix-homebrew.url = "github:zhaofengli/nix-homebrew";

View File

@@ -49,7 +49,7 @@ lib.overrideDerivation
inherit modDirVersion; inherit modDirVersion;
pname = "linux-rpi${toString rpiVersion}"; pname = "linux-rpi${toString rpiVersion}";
src = sources.kernel; src = sources.stable;
defconfig = defconfig =
{ {

View File

@@ -6,7 +6,7 @@
"owner": "raspberrypi", "owner": "raspberrypi",
"repo": "utils", "repo": "utils",
"rev": "f0ceb02829c3f8349b53633747527f4e2e5c0ae7", "rev": "f0ceb02829c3f8349b53633747527f4e2e5c0ae7",
"hash": "sha256-6sN2Wi0Y826EENMmGcPzOxyHoPtDGFfTsxnoH+cofWA=" "hash": "sha256-uY5W0M6ygY2LxOA4k3JEphhaveRa46c055JvGfsLWZo="
} }
} }
} }

View File

@@ -26,7 +26,7 @@
}; };
casks = [ casks = [
"aldente" "aldente"
"bartender" # "bartender"
"betterdisplay" "betterdisplay"
"chromium" "chromium"
"discord" "discord"
@@ -34,6 +34,7 @@
"gstreamer-runtime" "gstreamer-runtime"
"iterm2" "iterm2"
"jagex" "jagex"
"jordanbaird-ice"
"kitty" "kitty"
"minecraft" "minecraft"
"omnissa-horizon-client" "omnissa-horizon-client"

View File

@@ -95,4 +95,5 @@
isSystemUser = true; isSystemUser = true;
isNormalUser = false; isNormalUser = false;
}; };
fileSystems."/etc".neededForBoot = true;
} }

View File

@@ -135,6 +135,7 @@
# ################################################### # ###################################################
boot.supportedFilesystems = [ "bcachefs" ]; boot.supportedFilesystems = [ "bcachefs" ];
fileSystems."/etc".neededForBoot = true;
fileSystems."/data" = { fileSystems."/data" = {
device = "/dev/disk/by-uuid/a85420cc-a026-4100-80d2-a999081d792a"; device = "/dev/disk/by-uuid/a85420cc-a026-4100-80d2-a999081d792a";
fsType = "bcachefs"; fsType = "bcachefs";

View File

@@ -4,8 +4,6 @@
... ...
}: }:
{ {
fileSystems."/etc".neededForBoot = true;
# imports = [ ./hardware-configuration.nix ]; # imports = [ ./hardware-configuration.nix ];
${namespace} = { ${namespace} = {
# ################################################### # ###################################################
@@ -123,5 +121,6 @@
# ################################################### # ###################################################
boot.kernelPackages = pkgs.${namespace}.linuxPackages_cachyos-server-lto; boot.kernelPackages = pkgs.${namespace}.linuxPackages_cachyos-server-lto;
fileSystems."/etc".neededForBoot = true;
} }