re-organize nix configs
nvim update
This commit is contained in:
parent
eb3fb4f88e
commit
d277850804
13 changed files with 240 additions and 210 deletions
20
nixos/system.nix
Normal file
20
nixos/system.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ ... }:
|
||||
{
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nix.settings = {
|
||||
experimental-features = "nix-command flakes";
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
|
||||
# Select internationalisation properties.
|
||||
# i18n.defaultLocale = "en_US.UTF-8";
|
||||
# console = {
|
||||
# font = "Lat2-Terminus16";
|
||||
# keyMap = "us";
|
||||
# useXkbConfig = true; # use xkb.options in tty.
|
||||
# };
|
||||
|
||||
time.timeZone = "Canada/Eastern";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue