This commit is contained in:
2025-08-27 15:08:09 +00:00
parent 144aba7866
commit 98d8ea3511
6 changed files with 43 additions and 8 deletions

View File

@@ -11,10 +11,19 @@
imports = [
inputs.home-manager.nixosModules.default
../../modules/nixos/user.nix
../../modules/nixos/postgres.nix
];
wsl.enable = true;
wsl.defaultUser = "mthomson";
wsl = {
enable = true;
defaultUser = "mthomson";
startMenuLaunchers = true;
wslConf = {
network = {
generateResolvConf = true;
};
};
};
networking.hostName = "wsl";
@@ -22,6 +31,7 @@
git
wget
vim
dconf
];
nixpkgs.config.allowUnfree = true;

View File

@@ -5,6 +5,7 @@
}: {
imports = [
../../modules/home-manager/git.nix
../../modules/home-manager/stylix.nix
../../modules/home-manager/nixcats
../../modules/home-manager/zsh.nix
../../modules/home-manager/tmux.nix
@@ -12,6 +13,9 @@
../../modules/home-manager/jq.nix
../../modules/home-manager/lazygit.nix
../../modules/home-manager/man.nix
../../modules/home-manager/emacs
../../modules/home-manager/syncthing.nix
../../modules/home-manager/bitwarden.nix
];
home.username = "mthomson";
home.homeDirectory = "/home/mthomson";
@@ -19,6 +23,8 @@
home.packages = with pkgs; [
gcc
openconnect
wsl-vpnkit
];
programs.home-manager.enable = true;