This commit is contained in:
Henry Hiles 2025-08-20 10:08:36 -04:00
commit 133c94d64c
No known key found for this signature in database
4 changed files with 10 additions and 5 deletions

View file

@ -18,7 +18,7 @@
boot.initrd.allowMissingModules = true; boot.initrd.allowMissingModules = true;
nixpkgs = { nixpkgs = {
hostPlatform = "aarch64-linux"; hostPlatform = "aarch64-linux"; # Do i use binfmt here
config.allowBroken = true; config.allowBroken = true;
}; };
} }

6
flake.lock generated
View file

@ -2368,11 +2368,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1755186698, "lastModified": 1755615617,
"narHash": "sha256-wNO3+Ks2jZJ4nTHMuks+cxAiVBGNuEBXsT29Bz6HASo=", "narHash": "sha256-HMwfAJBdrr8wXAkbGhtcby1zGFvs+StOp19xNsbqdOg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "fbcf476f790d8a217c3eab4e12033dc4a0f6d23c", "rev": "20075955deac2583bb12f07151c2df830ef346b4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,9 +1,9 @@
{pkgs, ...}: { {pkgs, ...}: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
gimp gimp
gale
heroic heroic
inkscape inkscape
r2modman
libreoffice libreoffice
authenticator authenticator
cinny-desktop cinny-desktop

View file

@ -0,0 +1,5 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
btop
];
}