mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Update configuration.nix
This commit is contained in:
parent
c2262b1e05
commit
e586cc6d04
1 changed files with 10 additions and 7 deletions
|
@ -51,12 +51,21 @@
|
|||
services.fwupd.enable = true;
|
||||
|
||||
# Define user accounts
|
||||
users.extraUsers.aaronh = {
|
||||
users.users.aaronh = {
|
||||
description = "Aaron Honeycutt";
|
||||
home = "/home/aaronh";
|
||||
extraGroups = [ "wheel" "networkmanager" "adm"];
|
||||
isNormalUser = true;
|
||||
hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx.";
|
||||
|
||||
packages = with pkgs; [
|
||||
fish
|
||||
steam
|
||||
|
||||
];
|
||||
|
||||
shell = pkgs.fish;
|
||||
|
||||
};
|
||||
|
||||
# Allow Unfree
|
||||
|
@ -70,19 +79,13 @@
|
|||
with pkgs;
|
||||
[
|
||||
firefox
|
||||
fish
|
||||
flatpak
|
||||
git
|
||||
steam
|
||||
thunderbird
|
||||
restic
|
||||
wget
|
||||
];
|
||||
|
||||
users.users.aaronh = {
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
|
||||
# Enable the OpenSSH daemon
|
||||
services.openssh.enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue