rename systems -> hosts. Per host program specifications for user programs
This commit is contained in:
parent
ef0f74aae3
commit
2bea94afc4
23 changed files with 52 additions and 27 deletions
6
users/josh/by_hosts/joe/spotifyd.nix
Normal file
6
users/josh/by_hosts/joe/spotifyd.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [ pkgs.spotifyd ];
|
||||
}
|
||||
|
||||
|
0
users/josh/by_hosts/readme.md
Normal file
0
users/josh/by_hosts/readme.md
Normal file
|
@ -17,14 +17,14 @@
|
|||
imports =
|
||||
# Common settings all users share
|
||||
[ (settings.usersDir + "/_common/home.nix") ]
|
||||
# User programs
|
||||
# Programs
|
||||
++ ylib.umport {
|
||||
paths = [ ./programs ];
|
||||
recursive = true;
|
||||
}
|
||||
# User theme
|
||||
# Programs by host
|
||||
++ ylib.umport {
|
||||
paths = [ ./theme ];
|
||||
paths = [ ./by_hosts/${settings.system.hostname} ];
|
||||
recursive = true;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -54,10 +54,10 @@
|
|||
move-to-workspace-3 = [ "" ];
|
||||
move-to-workspace-4 = [ "" ];
|
||||
move-to-workspace-last = [ "" ];
|
||||
move-to-workspace-down = [ "<Control><Super>Down" ];
|
||||
move-to-workspace-up = [ "<Control><Super>Up" ];
|
||||
move-to-workspace-left = [ "<Control><Super>Left" ];
|
||||
move-to-workspace-right = [ "<Control><Super>Right" ];
|
||||
move-to-workspace-down = [ "<Control><Super>j" ];
|
||||
move-to-workspace-up = [ "<Control><Super>k" ];
|
||||
move-to-workspace-left = [ "<Control><Super>h" ];
|
||||
move-to-workspace-right = [ "<Control><Super>l" ];
|
||||
|
||||
switch-to-workspace-1 = [ "<Super>1" ];
|
||||
switch-to-workspace0 = [ "<Super>2" ];
|
Loading…
Add table
Add a link
Reference in a new issue