-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adapt home-manager-only config for changes
- Loading branch information
Showing
6 changed files
with
93 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ inputs, outputs, config, pkgs, ... }: | ||
{ | ||
|
||
imports = [ ] ++ (builtins.attrValues outputs.homeManagerModules); | ||
|
||
nixpkgs = { | ||
overlays = outputs.overlays; | ||
config = { | ||
allowUnfree = true; | ||
}; | ||
}; | ||
|
||
services.xcape = { | ||
enable = true; | ||
mapExpression = { | ||
Control_L = "Escape"; | ||
}; | ||
}; | ||
|
||
programs.zsh.initExtra = " | ||
export GPG_TTY=\"$(tty)\" | ||
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) | ||
gpgconf --launch gpg-agent | ||
"; | ||
|
||
home-manager.users.swarsel.swarselsystems = { | ||
isLaptop = true; | ||
isNixos = false; | ||
wallpaper = ../../wallpaper/surfacewp.png; | ||
temperatureHwmon = { | ||
isAbsolutePath = true; | ||
path = "/sys/devices/platform/thinkpad_hwmon/hwmon/"; | ||
input-filename = "temp1_input"; | ||
}; | ||
monitors = { | ||
main = { | ||
name = "California Institute of Technology 0x1407 Unknown"; | ||
mode = "1920x1080"; # TEMPLATE | ||
scale = "1"; | ||
position = "2560,0"; | ||
workspace = "2:二"; | ||
output = "eDP-1"; | ||
}; | ||
}; | ||
inputs = { | ||
"1:1:AT_Translated_Set_2_keyboard" = { | ||
xkb_layout = "us"; | ||
xkb_options = "grp:win_space_toggle"; | ||
xkb_variant = "altgr-intl"; | ||
}; | ||
}; | ||
keybindings = { }; | ||
}; | ||
|
||
} |
Oops, something went wrong.