added wsl config

This commit is contained in:
Gabe Venberg 2024-05-15 12:00:33 -05:00
parent d9e424dcfb
commit b900d6761a
7 changed files with 160 additions and 49 deletions

View file

@ -37,18 +37,6 @@ inputs.nixpkgs.lib.nixosSystem {
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
# Configure keymap in X11
services.xserver = {
xkb.layout = "us";
@ -91,7 +79,6 @@ inputs.nixpkgs.lib.nixosSystem {
};
imports = [
../../roles/home-manager/terminal.nix
../../modules/home-manager/nvim
../../modules/home-manager/common.nix
inputs.nixvim.homeManagerModules.nixvim
];
@ -112,13 +99,6 @@ inputs.nixpkgs.lib.nixosSystem {
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
# Enable the X11 windowing system.
# services.xserver.enable = true;
#
# # Enable the Cinnamon Desktop Environment.
# services.xserver.displayManager.lightdm.enable = true;
# services.xserver.desktopManager.cinnamon.enable = true;
})
];
}