2024-05-15 19:00:33 +02:00
|
|
|
|
{
|
|
|
|
|
inputs,
|
|
|
|
|
outputs,
|
|
|
|
|
}:
|
|
|
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
|
|
|
system = "x86_64-linux";
|
|
|
|
|
specialArgs = {inherit inputs outputs;};
|
|
|
|
|
# > Our main nixos configuration file <
|
|
|
|
|
modules = [
|
|
|
|
|
inputs.home-manager.nixosModules.home-manager
|
|
|
|
|
inputs.nixos-wsl.nixosModules.default
|
2024-05-31 19:01:32 +02:00
|
|
|
|
../configs/nixos/common.nix
|
2024-05-15 19:00:33 +02:00
|
|
|
|
({
|
|
|
|
|
config,
|
|
|
|
|
pkgs,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
2024-05-15 20:22:50 +02:00
|
|
|
|
wsl.enable = true;
|
|
|
|
|
wsl.wslConf.network.generateResolvConf = false;
|
|
|
|
|
networking.nameservers = ["1.1.1.1" "8.8.8.8"];
|
2024-05-15 19:00:33 +02:00
|
|
|
|
host = {
|
2024-05-15 20:22:50 +02:00
|
|
|
|
user = "nixos";
|
2024-05-15 19:00:33 +02:00
|
|
|
|
};
|
2024-05-15 20:22:50 +02:00
|
|
|
|
networking.hostName = "gv-wsl"; # Define your hostname.
|
2024-05-15 19:00:33 +02:00
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "America/Chicago";
|
|
|
|
|
|
2024-05-15 20:22:50 +02:00
|
|
|
|
programs.zsh.enable = true;
|
2024-05-15 19:00:33 +02:00
|
|
|
|
environment.shells = with pkgs; [zsh];
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
users.users.${config.host.user} = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "Gabe Venberg";
|
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
extraGroups = ["wheel"];
|
|
|
|
|
};
|
|
|
|
|
home-manager.users.${config.host.user} = {
|
|
|
|
|
inputs,
|
|
|
|
|
osConfig,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
host = osConfig.host;
|
2024-05-29 20:40:03 +02:00
|
|
|
|
user = {
|
2024-05-15 19:00:33 +02:00
|
|
|
|
nvim = {
|
|
|
|
|
enable-lsp = true;
|
|
|
|
|
enable-treesitter = true;
|
|
|
|
|
};
|
|
|
|
|
git = {
|
|
|
|
|
profile = {
|
|
|
|
|
name = "Gabe Venberg";
|
|
|
|
|
email = "gabevenberg@gmail.com";
|
|
|
|
|
};
|
|
|
|
|
workProfile.enable = false;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
imports = [
|
2024-05-15 20:22:50 +02:00
|
|
|
|
../roles/home-manager/terminal.nix
|
2024-05-31 19:01:32 +02:00
|
|
|
|
../configs/home-manager/common.nix
|
2024-05-15 19:00:33 +02:00
|
|
|
|
inputs.nixvim.homeManagerModules.nixvim
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Select internationalisation properties.
|
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
|
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
|
# 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?
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
}
|