updated to 1.2

This commit is contained in:
alsaiduq-lab 2025-09-16 05:07:53 -06:00
parent 568efbd2c3
commit 10efc3d280
2 changed files with 15 additions and 11 deletions

20
flake.lock generated
View file

@ -61,11 +61,11 @@
"zon2nix": "zon2nix" "zon2nix": "zon2nix"
}, },
"locked": { "locked": {
"lastModified": 1757970134, "lastModified": 1757995992,
"narHash": "sha256-Qj5r7gKTwo738cACM9fSFNKVbbGVVv8jZx2uEcS0D7g=", "narHash": "sha256-5r2hDhQioC1+CKh+DETQAR9UlQzcn9jH+EYxw4csinI=",
"owner": "ghostty-org", "owner": "ghostty-org",
"repo": "ghostty", "repo": "ghostty",
"rev": "0646cf8c1e0f77282cb25b7ff8dc961327b30775", "rev": "79f8ea07a173ae17aba1e59ff677eb8889560967",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -98,11 +98,11 @@
"i3-dotfiles": { "i3-dotfiles": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1756051379, "lastModified": 1758014321,
"narHash": "sha256-l1FDSO4/aqOEBQv7GPc96azTLWPCuwMMTW2mankB1S8=", "narHash": "sha256-CpGiZ0yYuoqsQT/zFDM6JLYrJL8P6aXze2wK2i5WQkU=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "a89e12d6f50fbcae982e5ed84c5f18fdd7b92887", "rev": "ad5a8a4e4a8742d2513cd2f43e3a71b0825703af",
"revCount": 11, "revCount": 13,
"type": "git", "type": "git",
"url": "ssh://git@github.com/alsaiduq-lab/i3-dotfiles" "url": "ssh://git@github.com/alsaiduq-lab/i3-dotfiles"
}, },
@ -216,11 +216,11 @@
}, },
"unstable": { "unstable": {
"locked": { "locked": {
"lastModified": 1757873102, "lastModified": 1757935978,
"narHash": "sha256-kYhNxLlYyJcUouNRazBufVfBInMWMyF+44xG/xar2yE=", "narHash": "sha256-xeHiYTqlibGf6VQADGrZ2GzayTOJo8G0g8D8f5zCE3Y=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "88cef159e47c0dc56f151593e044453a39a6e547", "rev": "0b96957fb614f693d0cee1bd65fbfc0e610df47f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -37,7 +37,10 @@
} @ inputs: let } @ inputs: let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; config = { allowUnfree = true; }; }; pkgs = import nixpkgs {
inherit system;
config = {allowUnfree = true;};
};
unstablePkgs = import unstable { unstablePkgs = import unstable {
inherit system; inherit system;
@ -81,6 +84,7 @@
clear-sans = prev.clear-sans.clear-sans; clear-sans = prev.clear-sans.clear-sans;
binary-font = prev.binary-font.binary-clock-font; binary-font = prev.binary-font.binary-clock-font;
}) })
(final: prev: {ghostty = inputs.ghostty.packages.${system}.default;})
]; ];
}; };
} }