updated wsl configs

This commit is contained in:
Bryan Ramos 2024-11-09 11:04:03 -05:00
parent 5c3d410aa0
commit 4be8dceaa1
No known key found for this signature in database
GPG key ID: E5D35432910B37AC
10 changed files with 165 additions and 45 deletions

View file

@ -2,7 +2,7 @@
with lib;
let
modules = config.modules.user;
modules = config.modules.user;
in
{
@ -10,10 +10,10 @@ in
user = mkOption {
description = "User Configurations";
type = types.attrs;
default = rec {
default = with pkgs; rec {
name = "bryan";
email = "bryan@ramos.codes";
shell = pkgs.bash;
shell = bash;
keys = import ./keys;
groups = [ "wheel" "networkmanager" "home-manager" "input" ];
@ -25,7 +25,6 @@ in
signByDefault = true;
};
};
bookmarks = import ./bookmarks;
};
};