updates including openssl
This commit is contained in:
@@ -101,30 +101,27 @@
|
||||
#media-session.enable = true;
|
||||
};
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
# services.xserver.libinput.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
users.users.mbessette = {
|
||||
isNormalUser = true;
|
||||
description = "Matthew Bessette";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
kdePackages.kate
|
||||
vscode
|
||||
bottles
|
||||
_1password-gui
|
||||
discord
|
||||
];
|
||||
};
|
||||
|
||||
# Install firefox.
|
||||
programs.firefox.enable = true;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
## https://www.reddit.com/r/NixOS/comments/1dl61a8/firefox_crashing_frequently_after_updating_flake/
|
||||
environment.sessionVariables.MOZ_ENABLE_WAYLAND = 0;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
git
|
||||
gparted
|
||||
openssl
|
||||
];
|
||||
|
||||
programs.firefox.enable = true;
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = true;
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
@@ -133,6 +130,7 @@
|
||||
shellAliases = {
|
||||
ll = "ls -l";
|
||||
update = "sudo nixos-rebuild switch --flake ~/nixos#caesium";
|
||||
laws = "aws --endpoint=http://localhost:8081";
|
||||
};
|
||||
histSize = 10000;
|
||||
ohMyZsh = {
|
||||
@@ -142,25 +140,26 @@
|
||||
};
|
||||
};
|
||||
|
||||
# Allow unfree packages
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
users.users.mbessette = {
|
||||
isNormalUser = true;
|
||||
description = "Matthew Bessette";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
packages = with pkgs; [
|
||||
kdePackages.kate
|
||||
vscode
|
||||
_1password-gui
|
||||
discord
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||
git
|
||||
gparted
|
||||
# wget
|
||||
];
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = true;
|
||||
localNetworkGameTransfers.openFirewall = true;
|
||||
# Development
|
||||
nodejs_22
|
||||
awscli2
|
||||
];
|
||||
};
|
||||
|
||||
# Future - Flatpak
|
||||
# https://github.com/gmodena/nix-flatpak
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user