From 3f2875faa95f001c9dabe95e75d0f17c50eab8da Mon Sep 17 00:00:00 2001 From: Kenryu Shibata Date: Tue, 12 Aug 2025 18:06:17 +0900 Subject: [PATCH] final commit before moving to gentoo Nix is great, but it was hard for me to configure every part of system explicitly on everyday machine. From now, I'm going to leave NixOS, but I will keep using Nix for further software development. Mabye come back in PI for high level IOT Dev? --- flake.lock | 13 ++++++------- flake.nix | 2 +- hosts/syushiki/default.nix | 2 ++ user/homed/default.nix | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index fa2eef3..e69369e 100644 --- a/flake.lock +++ b/flake.lock @@ -14,18 +14,17 @@ }, "original": { "owner": "sioodmy", - "ref": "main", "repo": "homix", "type": "github" } }, "nixos-hardware": { "locked": { - "lastModified": 1745907084, - "narHash": "sha256-Q8SpDbTI95vtKXgNcVl1VdSUhhDOORE8R77wWS2rmg8=", + "lastModified": 1752666637, + "narHash": "sha256-P8J72psdc/rWliIvp8jUpoQ6qRDlVzgSDDlgkaXQ0Fw=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "f1e52a018166e1a324f832de913e12c0e55792d0", + "rev": "d1bfa8f6ccfb5c383e1eba609c1eb67ca24ed153", "type": "github" }, "original": { @@ -53,11 +52,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1745794561, - "narHash": "sha256-T36rUZHUART00h3dW4sV5tv4MrXKT7aWjNfHiZz7OHg=", + "lastModified": 1752687322, + "narHash": "sha256-RKwfXA4OZROjBTQAl9WOZQFm7L8Bo93FQwSJpAiSRvo=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "5461b7fa65f3ca74cef60be837fd559a8918eaa0", + "rev": "6e987485eb2c77e5dcc5af4e3c70843711ef9251", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 9c1b84f..6acde01 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ inputs = { nixpkgs.url = "nixpkgs/nixos-unstable"; - homix.url = "github:sioodmy/homix/main"; + homix.url = "github:sioodmy/homix"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; }; diff --git a/hosts/syushiki/default.nix b/hosts/syushiki/default.nix index 69f046c..2771656 100644 --- a/hosts/syushiki/default.nix +++ b/hosts/syushiki/default.nix @@ -43,6 +43,8 @@ binfmt = true; }; + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 3000 3001 22 ]; diff --git a/user/homed/default.nix b/user/homed/default.nix index de1f45f..422c5a7 100644 --- a/user/homed/default.nix +++ b/user/homed/default.nix @@ -5,6 +5,6 @@ ./polybar ./profile ./xmonad - #./zed-editor + ./zed-editor ]; }