Files
dotfiles/nixos/machines/strixi-minaj-wsl.nix

38 lines
678 B
Nix
Raw Normal View History

2026-02-03 20:30:39 -08:00
{ lib, pkgs, config, inputs, ... }:
2024-06-02 04:04:05 +00:00
{
imports = [
../configuration.nix
];
2024-09-26 14:15:27 -06:00
myModules.wsl.enable = true;
2024-06-02 04:04:05 +00:00
networking.hostName = "strixi-minaj-wsl";
wsl.defaultUser = "imalison";
system.stateVersion = "23.11"; # Did you read the comment?
2026-02-03 20:30:39 -08:00
home-manager.sharedModules = [
{
home.stateVersion = "23.11";
}
];
2024-06-02 04:04:05 +00:00
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"
2025-03-10 07:44:44 -06:00
"electron-32.3.3"
2024-06-02 04:04:05 +00:00
];
}