fix module mapping update settings

This commit is contained in:
2025-01-07 23:10:24 -05:00
parent 966c6cf904
commit 88129add4d
3 changed files with 5 additions and 8 deletions

View File

@@ -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
]; ];
}; };
} }

View File

@@ -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

View File

@@ -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...