mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-13 03:33:00 -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;
|
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;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue