Nix-Vibe public snapshot (squashed history)
Current state of main at 0240060 feat(hp-laptop): install TeleportFling from its flake. History intentionally collapsed to a single commit; this repo mirrors only the latest state.
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{ config
|
||||
, pkgs
|
||||
, lib
|
||||
, ...
|
||||
}:
|
||||
|
||||
{
|
||||
# Set your time zone
|
||||
time.timeZone = "Europe/London";
|
||||
|
||||
# Configure console keyboard layout
|
||||
console.keyMap = "uk";
|
||||
|
||||
# Configure X server keyboard layout if X server is enabled
|
||||
services.xserver.xkb.layout = lib.mkIf config.services.xserver.enable "gb";
|
||||
|
||||
services.tailscale.enable = true;
|
||||
|
||||
users.mutableUsers = false;
|
||||
|
||||
nix.settings = {
|
||||
accept-flake-config = true;
|
||||
trusted-users = [ "petere" ];
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
# gemini-cli
|
||||
kitty.terminfo
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user