Compare commits
2 commits
edaa6030bb
...
3e4e8a59a4
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e4e8a59a4 | |||
| 114a1085a6 |
3 changed files with 19 additions and 2 deletions
|
|
@ -67,6 +67,9 @@
|
|||
# Setup profiles sync daemon
|
||||
services.psd.enable = true;
|
||||
|
||||
# Setup automatic usb device mounting
|
||||
services.udisks2.enable = true;
|
||||
|
||||
# Get nicer hostname
|
||||
networking.hostName = "skadi"; # Define your hostname.
|
||||
|
||||
|
|
|
|||
|
|
@ -36,5 +36,18 @@
|
|||
|
||||
# Install imv
|
||||
programs.imv.enable = true;
|
||||
|
||||
# Setup udisk for automatic mounting of usb devices
|
||||
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.kitty}/bin/kitty -e yazi";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -175,8 +175,9 @@ in {
|
|||
};
|
||||
|
||||
input = {
|
||||
kb_layout = "us,hr";
|
||||
kb_options = "grp:alt_space_toggle";
|
||||
kb_layout = "hr";
|
||||
kb_variant = "us";
|
||||
# kb_options = "";
|
||||
accel_profile = "flat";
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue