Compare commits
2 Commits
1790336aa5
...
5f9c6dd0a3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5f9c6dd0a3 | ||
|
|
c426029a25 |
@@ -2,6 +2,7 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
|
./system-modules/adb.nix
|
||||||
./system-modules/auto-mount.nix
|
./system-modules/auto-mount.nix
|
||||||
./system-modules/hardware-configuration.nix
|
./system-modules/hardware-configuration.nix
|
||||||
./system-modules/fuse.nix
|
./system-modules/fuse.nix
|
||||||
|
|||||||
@@ -169,12 +169,12 @@ lib.mkIf (user != "tv")
|
|||||||
hovered = { underline = true; };
|
hovered = { underline = true; };
|
||||||
};
|
};
|
||||||
which = {
|
which = {
|
||||||
mask = { bg = "#3c3836"; };
|
mask = { bg = black.base; };
|
||||||
cand = { fg = "#83a598"; };
|
cand = { fg = accent.base; };
|
||||||
rest = { fg = "#928374"; };
|
rest = { fg = secondary.base; };
|
||||||
desc = { fg = "#fe8019"; };
|
desc = { fg = tertiary.base; };
|
||||||
separator = " ";
|
separator = " ";
|
||||||
separator_style = { fg = "#504945"; };
|
separator_style = { fg = foreground; };
|
||||||
};
|
};
|
||||||
help = {
|
help = {
|
||||||
on = { fg = "#fe8019"; };
|
on = { fg = "#fe8019"; };
|
||||||
|
|||||||
7
system-modules/adb.nix
Normal file
7
system-modules/adb.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{ host, lib, ... }:
|
||||||
|
lib.mkIf (host != "NxACE")
|
||||||
|
{
|
||||||
|
programs.adb = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
users.users."${user}" = {
|
users.users."${user}" = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "networkmanager" "wheel" "audio" "video" "docker" "libvirtd" "uinput" "input" "ydotool" ];
|
extraGroups = [ "networkmanager" "wheel" "audio" "video" "docker" "libvirtd" "uinput" "input" "ydotool" "adbusers" ];
|
||||||
useDefaultShell = true;
|
useDefaultShell = true;
|
||||||
openssh.authorizedKeys.keys = [
|
openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID1RPCcS8DtIf75a2FEW4d8X6WTVeLlmretoLqppvZlJ" # From [A] GPG Sub Key
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID1RPCcS8DtIf75a2FEW4d8X6WTVeLlmretoLqppvZlJ" # From [A] GPG Sub Key
|
||||||
|
|||||||
Reference in New Issue
Block a user