nix #11
|
@ -27,9 +27,6 @@
|
||||||
kexec-tools
|
kexec-tools
|
||||||
openvpn
|
openvpn
|
||||||
|
|
||||||
# android tools
|
|
||||||
android-udev-rules
|
|
||||||
|
|
||||||
# Needed for all the fetchFromGit in this repo on nixos-rebuild
|
# Needed for all the fetchFromGit in this repo on nixos-rebuild
|
||||||
git
|
git
|
||||||
];
|
];
|
||||||
|
@ -37,6 +34,7 @@
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
adb.enable = true;
|
||||||
# Enable compilation cache
|
# Enable compilation cache
|
||||||
ccache.enable = true;
|
ccache.enable = true;
|
||||||
# TODO Not enough, see https://nixos.wiki/wiki/CCache.
|
# TODO Not enough, see https://nixos.wiki/wiki/CCache.
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
users.users.geoffrey = {
|
users.users.geoffrey = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "adbusers" "wheel" ];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
|
|
||||||
initialHashedPassword = "$y$j9T$e64bjL7iyVlniEKwKbM9g0$cCn74za0r6L9QMO20Fdxz3/SX0yvhz3Xd6.2BhtbRL1"; # Not a real password
|
initialHashedPassword = "$y$j9T$e64bjL7iyVlniEKwKbM9g0$cCn74za0r6L9QMO20Fdxz3/SX0yvhz3Xd6.2BhtbRL1"; # Not a real password
|
||||||
|
|
Loading…
Reference in a new issue