Update configuration.nix

This commit is contained in:
Aaron Honeycutt 2023-01-03 15:29:59 +00:00
parent c2262b1e05
commit e586cc6d04

View file

@ -51,12 +51,21 @@
services.fwupd.enable = true; services.fwupd.enable = true;
# Define user accounts # Define user accounts
users.extraUsers.aaronh = { users.users.aaronh = {
description = "Aaron Honeycutt"; description = "Aaron Honeycutt";
home = "/home/aaronh"; home = "/home/aaronh";
extraGroups = [ "wheel" "networkmanager" "adm"]; extraGroups = [ "wheel" "networkmanager" "adm"];
isNormalUser = true; isNormalUser = true;
hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx."; hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx.";
packages = with pkgs; [
fish
steam
];
shell = pkgs.fish;
}; };
# Allow Unfree # Allow Unfree
@ -70,19 +79,13 @@
with pkgs; with pkgs;
[ [
firefox firefox
fish
flatpak flatpak
git git
steam
thunderbird thunderbird
restic restic
wget wget
]; ];
users.users.aaronh = {
shell = pkgs.fish;
};
# Enable the OpenSSH daemon # Enable the OpenSSH daemon
services.openssh.enable = true; services.openssh.enable = true;