Add cifs-utils, bump flake.lock

This commit is contained in:
Felix Suchert 2023-07-13 12:13:26 +02:00
parent 699a1e53dc
commit c07a360ce5
Signed by: feliix42
GPG key ID: 24363525EA0E8A99
2 changed files with 14 additions and 11 deletions

View file

@ -23,11 +23,11 @@
}, },
"nixos-hardware": { "nixos-hardware": {
"locked": { "locked": {
"lastModified": 1688966833, "lastModified": 1689060619,
"narHash": "sha256-9ilzbSwArZmDjT/g1XYD+KYOFfmoS0WOYXSQBvZDIv4=", "narHash": "sha256-vODUkZLWFVCvo1KPK3dC2CbXjxa9antEn5ozwlcTr48=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixos-hardware", "repo": "nixos-hardware",
"rev": "f0984a5a303659bc9b73895c82a85fdfae40b87a", "rev": "44bc025007e5fcc10dbc3d9f96dcbf06fc0e8c1c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -39,11 +39,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1688939073, "lastModified": 1689137672,
"narHash": "sha256-jYhYjeK5s6k8QS3i+ovq9VZqBJaWbxm7awTKNhHL9d0=", "narHash": "sha256-QZoHxr0a73x6rQcAo5CiwYpysHbSnk7lAR8/16um7mM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "8df7a67abaf8aefc8a2839e0b48f92fdcf69a38b", "rev": "98da3dd0de6660d4abed7bb74e748694bd803413",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -62,11 +62,11 @@
}, },
"unstable": { "unstable": {
"locked": { "locked": {
"lastModified": 1688918189, "lastModified": 1689192006,
"narHash": "sha256-f8ZlJ67LgEUDnN7ZsAyd1/Fyby1VdOXWg4XY/irSGrQ=", "narHash": "sha256-QM0f0d8oPphOTYJebsHioR9+FzJcy1QNIzREyubB91U=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "408c0e8c15a1c9cf5c3226931b6f283c9867c484", "rev": "2de8efefb6ce7f5e4e75bdf57376a96555986841",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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