mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
calibre, android studio and automatic USB mounting
This commit is contained in:
parent
704a72b3ca
commit
c4d8ed4e01
2 changed files with 16 additions and 1 deletions
|
|
@ -14,7 +14,7 @@
|
||||||
../../modules/nixos/niri.nix
|
../../modules/nixos/niri.nix
|
||||||
|
|
||||||
# ../../modules/nixos/gnome.nix
|
# ../../modules/nixos/gnome.nix
|
||||||
# ../../modules/nixos/android-studio.nix
|
../../modules/nixos/android-studio.nix
|
||||||
# ../../modules/nixos/docker.nix
|
# ../../modules/nixos/docker.nix
|
||||||
../../modules/nixos/podman.nix
|
../../modules/nixos/podman.nix
|
||||||
|
|
||||||
|
|
@ -48,6 +48,8 @@
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
systemd.services.NetworkManager-wait-online.enable = false;
|
systemd.services.NetworkManager-wait-online.enable = false;
|
||||||
|
|
||||||
|
services.udisks2.enable = true;
|
||||||
|
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
powerOnBoot = true;
|
powerOnBoot = true;
|
||||||
|
|
|
||||||
|
|
@ -23,9 +23,22 @@
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
godot
|
godot
|
||||||
|
|
||||||
|
calibre
|
||||||
claude-code
|
claude-code
|
||||||
];
|
];
|
||||||
|
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.udiskie = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
# workaround for
|
||||||
|
# https://github.com/nix-community/home-manager/issues/632
|
||||||
|
program_options = {
|
||||||
|
# replace with your favorite file manager
|
||||||
|
file_manager = "${pkgs.nemo-with-extensions}/bin/nemo";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue