Add 'users/glittershark/system/' from commit '3b174300ae'
git-subtree-dir: users/glittershark/system git-subtree-mainline:85d82a9dc2git-subtree-split:3b174300ae
This commit is contained in:
commit
81564185e9
49 changed files with 3802 additions and 0 deletions
45
users/glittershark/system/home/machines/chupacabra.nix
Normal file
45
users/glittershark/system/home/machines/chupacabra.nix
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
laptopKeyboardId = "25";
|
||||
in {
|
||||
imports = [
|
||||
../platforms/linux.nix
|
||||
../modules/common.nix
|
||||
../modules/games.nix
|
||||
../modules/rtlsdr.nix
|
||||
|
||||
~/code/urb/urbos/home
|
||||
];
|
||||
|
||||
# for when hacking
|
||||
programs.home-manager.path = "/home/grfn/code/home-manager";
|
||||
|
||||
system.machine = {
|
||||
wirelessInterface = "wlp59s0";
|
||||
i3FontSize = 9;
|
||||
};
|
||||
|
||||
systemd.user.services.laptop-keyboard = {
|
||||
Unit = {
|
||||
Description = "Swap caps+escape and alt+super, but only on the built-in laptop keyboard";
|
||||
After = [ "graphical-session-pre.target" ];
|
||||
PartOf = [ "graphical-session.target" ];
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
||||
Service = {
|
||||
Type = "oneshot";
|
||||
RemainAfterExit = true;
|
||||
ExecStart = (
|
||||
"${pkgs.xorg.setxkbmap}/bin/setxkbmap "
|
||||
+ "-device ${laptopKeyboardId} "
|
||||
+ "-option caps:swapescape "
|
||||
+ "-option compose:ralt "
|
||||
+ "-option altwin:swap_alt_win"
|
||||
);
|
||||
};
|
||||
};
|
||||
|
||||
urbint.projectPath = "code/urb";
|
||||
}
|
||||
17
users/glittershark/system/home/machines/dobharchu.nix
Normal file
17
users/glittershark/system/home/machines/dobharchu.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
../platforms/darwin.nix
|
||||
../modules/common.nix
|
||||
../modules/games.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
coreutils
|
||||
gnupg
|
||||
nix-prefetch-github
|
||||
pass
|
||||
pinentry_mac
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue