Compare commits

..

2 commits

Author SHA1 Message Date
6bf611e15c
Update mlir flake 2023-07-13 12:15:14 +02:00
c07a360ce5
Add cifs-utils, bump flake.lock 2023-07-13 12:13:26 +02:00
2 changed files with 17 additions and 14 deletions

View file

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1687437085,
"narHash": "sha256-eQU5x7Y22uoNiid9RHwpmrne17a8eHlBvbhrINFKpAo=",
"lastModified": 1689243291,
"narHash": "sha256-beD+uY2+Fn5bR1nWzzjikmCQGxnFDePWI0464zi+Dhg=",
"owner": "Feliix42",
"repo": "mlir.nix",
"rev": "4f01902213828e565b8c7fdb6886b0ccd3109b14",
"rev": "02a73472f18be570657a36a57e04244e32f4a471",
"type": "github"
},
"original": {
@ -23,11 +23,11 @@
},
"nixos-hardware": {
"locked": {
"lastModified": 1688966833,
"narHash": "sha256-9ilzbSwArZmDjT/g1XYD+KYOFfmoS0WOYXSQBvZDIv4=",
"lastModified": 1689060619,
"narHash": "sha256-vODUkZLWFVCvo1KPK3dC2CbXjxa9antEn5ozwlcTr48=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "f0984a5a303659bc9b73895c82a85fdfae40b87a",
"rev": "44bc025007e5fcc10dbc3d9f96dcbf06fc0e8c1c",
"type": "github"
},
"original": {
@ -39,11 +39,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1688939073,
"narHash": "sha256-jYhYjeK5s6k8QS3i+ovq9VZqBJaWbxm7awTKNhHL9d0=",
"lastModified": 1689137672,
"narHash": "sha256-QZoHxr0a73x6rQcAo5CiwYpysHbSnk7lAR8/16um7mM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "8df7a67abaf8aefc8a2839e0b48f92fdcf69a38b",
"rev": "98da3dd0de6660d4abed7bb74e748694bd803413",
"type": "github"
},
"original": {
@ -62,11 +62,11 @@
},
"unstable": {
"locked": {
"lastModified": 1688918189,
"narHash": "sha256-f8ZlJ67LgEUDnN7ZsAyd1/Fyby1VdOXWg4XY/irSGrQ=",
"lastModified": 1689192006,
"narHash": "sha256-QM0f0d8oPphOTYJebsHioR9+FzJcy1QNIzREyubB91U=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "408c0e8c15a1c9cf5c3226931b6f283c9867c484",
"rev": "2de8efefb6ce7f5e4e75bdf57376a96555986841",
"type": "github"
},
"original": {

View file

@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
# ------------ networking ---------------------------------------------------
@ -47,6 +47,9 @@
# for SAMBA file shares
services.gvfs.enable = true;
# for manual mounting of SMB shares
environment.systemPackages = [
pkgs.cifs-utils
];
}