Compare commits

..

9 Commits

Author SHA1 Message Date
coolneng aef1677b9a flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/3bacde6273b09a21a8ccfba15586fb165078fb62' (2022-11-05)
  → 'github:NixOS/nixpkgs/667e5581d16745bcda791300ae7e2d73f49fff25' (2022-11-07)
2022-11-08 22:33:00 +01:00
coolneng 539a37d159
Mount samba share without inode support 2022-11-07 17:23:06 +01:00
coolneng 035dcb8466
Revert "Replace waybar with pulseaudio sink ignore fork"
This reverts commit e9be8dfe42.
2022-11-07 15:54:33 +01:00
coolneng c0c77c2c96 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/a2a777538d971c6b01c6e54af89ddd6567c055e8' (2022-11-03)
  → 'github:NixOS/nixpkgs/3bacde6273b09a21a8ccfba15586fb165078fb62' (2022-11-05)
2022-11-06 22:32:16 +01:00
coolneng c89c1d69b6 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/d40fea9aeb8840fea0d377baa4b38e39b9582458' (2022-10-31)
  → 'github:NixOS/nixpkgs/a2a777538d971c6b01c6e54af89ddd6567c055e8' (2022-11-03)
2022-11-04 22:31:34 +01:00
coolneng cad9dfa8d7 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/412b9917cea092f3d39f9cd5dead4effd5bc4053' (2022-10-30)
  → 'github:NixOS/nixpkgs/d40fea9aeb8840fea0d377baa4b38e39b9582458' (2022-10-31)
2022-11-01 22:32:03 +01:00
coolneng b96d37cfc2 flake.lock: Update
Flake lock file updates:

• Updated input 'nixpkgs':
    'github:NixOS/nixpkgs/fdebb81f45a1ba2c4afca5fd9f526e1653ad0949' (2022-10-29)
  → 'github:NixOS/nixpkgs/412b9917cea092f3d39f9cd5dead4effd5bc4053' (2022-10-30)
2022-10-31 22:32:42 +01:00
coolneng 49f2d69267
Allow dbus to communicate with storage devices 2022-10-30 13:41:22 +01:00
coolneng b618272097
Stop automounting USB and SD cards 2022-10-30 13:24:40 +01:00
1 changed files with 13 additions and 3 deletions

View File

@ -23,14 +23,19 @@
fsType = "zfs";
};
fileSystems."/sdcard" =
{ device = "systemd-1";
fsType = "autofs";
};
fileSystems."/ugent" =
{ device = "systemd-1";
fsType = "autofs";
};
fileSystems."/tmp" =
{ device = "syscea/ephemeral/tmp";
fsType = "zfs";
fileSystems."/usb" =
{ device = "systemd-1";
fsType = "autofs";
};
fileSystems."/home/coolneng" =
@ -38,6 +43,11 @@
fsType = "zfs";
};
fileSystems."/tmp" =
{ device = "syscea/ephemeral/tmp";
fsType = "zfs";
};
fileSystems."/home/coolneng/Downloads" =
{ device = "syscea/stateful/home/downloads";
fsType = "zfs";