Misc changes.

This commit is contained in:
Annika Merris 2024-05-07 10:38:42 -04:00
parent ee9fe1d6ce
commit 6d984aee06
2 changed files with 15 additions and 2 deletions

View file

@ -112,6 +112,7 @@
wget wget
discord discord
git git
logiops
]; ];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
@ -127,9 +128,14 @@
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.
services.openssh.enable = true; services.openssh.enable = true;
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
# Open ports in the firewall. # Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ]; networking.firewall.allowedUDPPorts = [
5353
];
# Or disable the firewall altogether. # Or disable the firewall altogether.
# networking.firewall.enable = false; # networking.firewall.enable = false;

View file

@ -1,6 +1,10 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# imports = [
# inputs.sops-nix.homeManagerModules.sops
#];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
# manage. # manage.
@ -35,6 +39,7 @@
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
pkgs.playerctl
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -76,7 +81,6 @@
programs.vscode = { programs.vscode = {
enable = true; enable = true;
extensions = with pkgs.vscode-extensions; [ extensions = with pkgs.vscode-extensions; [
# OK, I have nothing for now.
bbenoist.nix bbenoist.nix
]; ];
}; };
@ -86,6 +90,9 @@
global = { global = {
username = "me@annikamerris.com"; username = "me@annikamerris.com";
password = "R%3@TNGQYckkGopY"; password = "R%3@TNGQYckkGopY";
use_mpris = true;
device_name = "kim-nix";
device_type = "computer";
}; };
}; };
}; };