47 lines
782 B
Nix
47 lines
782 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../configuration.nix
|
|
];
|
|
|
|
myModules.wsl.enable = true;
|
|
|
|
networking.hostName = "strixi-minaj-wsl";
|
|
myModules.hostIdentity = {
|
|
emoticon = "👩🏿";
|
|
tmux.background = "#4338ca";
|
|
};
|
|
|
|
wsl.defaultUser = "imalison";
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
|
|
home-manager.sharedModules = [
|
|
{
|
|
home.stateVersion = "23.11";
|
|
}
|
|
];
|
|
|
|
programs.gnupg = {
|
|
agent = {
|
|
pinentryPackage = pkgs.pinentry-curses;
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
};
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"openssl-1.0.2u"
|
|
"electron-12.2.3"
|
|
"etcher"
|
|
"electron-19.1.9"
|
|
"openssl-1.1.1w"
|
|
"nix-2.16.2"
|
|
"electron-32.3.3"
|
|
];
|
|
}
|