Fedir Zadniprovskyi commited on
Commit
8b9b750
1 Parent(s): 4cc0dc7

deps: update flake

Browse files
Files changed (2) hide show
  1. flake.lock +4 -4
  2. flake.nix +4 -1
flake.lock CHANGED
@@ -20,16 +20,16 @@
20
  },
21
  "nixpkgs": {
22
  "locked": {
23
- "lastModified": 1716073433,
24
- "narHash": "sha256-9G0BS7I/5z0n35Vx1d+TLxaIKQ93rEf5VLXNLWu7/44=",
25
  "owner": "NixOS",
26
  "repo": "nixpkgs",
27
- "rev": "b7d845292c304e026d86097e6d07409070e80dcc",
28
  "type": "github"
29
  },
30
  "original": {
31
  "owner": "NixOS",
32
- "ref": "master",
33
  "repo": "nixpkgs",
34
  "type": "github"
35
  }
 
20
  },
21
  "nixpkgs": {
22
  "locked": {
23
+ "lastModified": 1725432240,
24
+ "narHash": "sha256-+yj+xgsfZaErbfYM3T+QvEE2hU7UuE+Jf0fJCJ8uPS0=",
25
  "owner": "NixOS",
26
  "repo": "nixpkgs",
27
+ "rev": "ad416d066ca1222956472ab7d0555a6946746a80",
28
  "type": "github"
29
  },
30
  "original": {
31
  "owner": "NixOS",
32
+ "ref": "nixos-unstable",
33
  "repo": "nixpkgs",
34
  "type": "github"
35
  }
flake.nix CHANGED
@@ -1,7 +1,8 @@
1
  {
2
  inputs = {
3
- nixpkgs.url = "github:NixOS/nixpkgs/master";
4
  flake-utils.url = "github:numtide/flake-utils";
 
5
  };
6
  outputs =
7
  { nixpkgs, flake-utils, ... }:
@@ -11,6 +12,8 @@
11
  pkgs = import nixpkgs {
12
  inherit system;
13
  config.allowUnfree = true;
 
 
14
  };
15
  in
16
  {
 
1
  {
2
  inputs = {
3
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
4
  flake-utils.url = "github:numtide/flake-utils";
5
+ flake-utils.inputs.nixpkgs.follows = "nixpkgs";
6
  };
7
  outputs =
8
  { nixpkgs, flake-utils, ... }:
 
12
  pkgs = import nixpkgs {
13
  inherit system;
14
  config.allowUnfree = true;
15
+ # `cudnn_8_9` is marked as broken but still seems to work as before
16
+ config.allowBroken = true;
17
  };
18
  in
19
  {