no
This commit is contained in:
parent
f04ec2a417
commit
9d5bfbb3bc
3 changed files with 14 additions and 4 deletions
|
@ -4,6 +4,7 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -113,7 +114,8 @@
|
|||
};
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
time.timeZone = "Asia/Taipei"; # lib.mkDefault
|
||||
#services.automatic-timezoned.enable = true;
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
options,
|
||||
...
|
||||
}:
|
||||
{
|
||||
# Enable the X11 windowing system.
|
||||
# You can disable this if you're only using the Wayland session.
|
||||
services.xserver.enable = false;
|
||||
|
||||
#services.ntp.enable = true;
|
||||
# Configure keymap in X11
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
|
@ -25,7 +30,6 @@
|
|||
max-free = ${toString (1024 * 1024 * 1024)}
|
||||
'';
|
||||
};
|
||||
|
||||
hardware.bluetooth.enable = true; # enables support for Bluetooth
|
||||
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
|
||||
|
@ -58,6 +62,8 @@
|
|||
environment.systemPackages = [
|
||||
inputs.nixvim.packages.${pkgs.system}.default
|
||||
];
|
||||
#services.automatic-timezoned.enable = true;
|
||||
#networking.timeServers = options.networking.timeServers.default ++ [ "time-macos.apple.com" ];
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.kaitotlex = {
|
||||
|
|
|
@ -23,6 +23,8 @@
|
|||
# here is some command line tools I use frequently
|
||||
# feel free to add your own or remove some of them
|
||||
#davinci-resolve
|
||||
geoclue2
|
||||
lua
|
||||
tetrio-desktop
|
||||
#tetrio-plus
|
||||
prismlauncher
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue