diff options
| author | Fuwn <[email protected]> | 2025-05-05 18:19:45 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-05 18:19:45 -0700 |
| commit | 0e3038f6dfe17ed19ffe58fc1753f287ac171b91 (patch) | |
| tree | b06f454af8ed7c85a934949d59847c21f44a6d22 /flake.nix | |
| parent | Nara: Clean up Homebrew (diff) | |
| download | nixos-config-0e3038f6dfe17ed19ffe58fc1753f287ac171b91.tar.xz nixos-config-0e3038f6dfe17ed19ffe58fc1753f287ac171b91.zip | |
Flake: Clean up on macOS
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -70,7 +70,7 @@ in [ (import "${parts}/checks.nix" { inherit pre-commit-hooks system; }) - (import "${parts}/devenv.nix" { inherit config lib pkgs; }) + (if pkgs.stdenv.isDarwin then { } else import "${parts}/devenv.nix" { inherit config lib pkgs; }) ]; packages.default = home-manager.defaultPackage."${system}"; @@ -83,6 +83,7 @@ flake-root.url = "github:srid/flake-root"; flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/=0.1.5.tar.gz"; just-flake.url = "github:juspay/just-flake"; + mk-shell-bin.url = "github:rrbutani/nix-mk-shell-bin"; nix-filter.url = "github:numtide/nix-filter"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; nixpkgs-stable.url = "github:NixOS/nixpkgs/24.05"; @@ -351,6 +352,15 @@ }; }; + nix2container = { + url = "github:nlewo/nix2container"; + + inputs = { + flake-utils.follows = "flake-utils"; + nixpkgs.follows = "nixpkgs"; + }; + }; + notion-repackaged = { url = "github:pikokr/nix-notion-repackaged"; inputs.nixpkgs.follows = "nixpkgs"; |