fix module mapping update settings
This commit is contained in:
@@ -122,7 +122,6 @@
|
|||||||
programs.fish.enable = (userVars.userA.shell == "fish");
|
programs.fish.enable = (userVars.userA.shell == "fish");
|
||||||
imports = [
|
imports = [
|
||||||
./modules/home/${userVars.userA.username}/dotfiles.nix
|
./modules/home/${userVars.userA.username}/dotfiles.nix
|
||||||
./modules/home/${userVars.userA.username}/appearance.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -154,7 +153,6 @@
|
|||||||
programs.fish.enable = (userVars.userB.shell == "fish");
|
programs.fish.enable = (userVars.userB.shell == "fish");
|
||||||
imports = [
|
imports = [
|
||||||
./modules/home/${userVars.userB.username}/dotfiles.nix
|
./modules/home/${userVars.userB.username}/dotfiles.nix
|
||||||
./modules/home/${userVars.userB.username}/appearance.nix
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
# Finder Settings
|
# Finder Settings
|
||||||
system.defaults.finder = {
|
system.defaults.finder = {
|
||||||
FXPreferredViewStyle = "Nlsv"; # Set default view style to list view
|
FXPreferredViewStyle = "Nlsv"; # Set default view style to list view
|
||||||
NewWindowTarget = "PfHm"; # Set default new window target to home folder
|
NewWindowTarget = "Home"; # Set default new window target to home folder
|
||||||
ShowMountedServersOnDesktop = true; # Show mounted servers on desktop
|
ShowMountedServersOnDesktop = true; # Show mounted servers on desktop
|
||||||
ShowPathbar = true; # Show path bar
|
ShowPathbar = true; # Show path bar
|
||||||
# Add more Finder settings here
|
# Add more Finder settings here
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{ config, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
system.nixpkgsRelease = "unstable"; # Use the unstable channel for latest Nixpkgs. Stable packages update less frequently, for stable use "24.11"
|
|
||||||
|
|
||||||
system.defaults.screencapture = {
|
system.defaults.screencapture = {
|
||||||
location = "~/Documents/Screenshots"; # Set default screenshot location
|
location = "~/Documents/Screenshots"; # Set default screenshot location
|
||||||
# Add more screencapture settings here
|
# Add more screencapture settings here
|
||||||
@@ -16,7 +14,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
system.keyboard = {
|
system.keyboard = {
|
||||||
swapLeftCtrlAndFn = true;
|
swapLeftCtrlAndFn = true; # Swap left control and function keys
|
||||||
|
enableKeyMapping = true; # Enable key mapping
|
||||||
# Set up your keyboard preferences here
|
# Set up your keyboard preferences here
|
||||||
};
|
};
|
||||||
# You can add more Mac defaults here as well...
|
# You can add more Mac defaults here as well...
|
||||||
|
|||||||
Reference in New Issue
Block a user