mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
diskutils
This commit is contained in:
parent
b440038b65
commit
384114d2ca
3 changed files with 10 additions and 3 deletions
|
|
@ -5,8 +5,10 @@
|
||||||
cargo
|
cargo
|
||||||
clippy
|
clippy
|
||||||
rustfmt
|
rustfmt
|
||||||
make
|
gnumake
|
||||||
cmake
|
cmake
|
||||||
|
llvm
|
||||||
|
gcc
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
|
programs.vscode.profiles.default.extensions = with pkgs.vscode-extensions; [
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,9 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
|
# udisks2 is needed for disk management and mounting.
|
||||||
|
# If you cannot see external drives in your file manager, enable this.
|
||||||
services.udisks2.enable = true;
|
services.udisks2.enable = true;
|
||||||
programs.gnome-disks.enable = true;
|
programs.gnome-disks.enable = true;
|
||||||
environment.systempackages = [
|
environment.systemPackages = [
|
||||||
pkgs.smartmontools
|
pkgs.smartmontools
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
|
imports = [
|
||||||
|
./xremap.nix
|
||||||
|
./diskutil.nix
|
||||||
|
];
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
@ -6,7 +10,6 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
pciutils
|
pciutils
|
||||||
usbutils
|
usbutils
|
||||||
smartmontools
|
|
||||||
v4l-utils
|
v4l-utils
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue