universe/users/infinidoge/default.nix
2022-04-29 10:27:44 -04:00

28 lines
568 B
Nix

{ config, self, lib, pkgs, ... }: {
home-manager.users.infinidoge = { suites, profiles, ... }: {
imports =
(with suites; lib.lists.flatten [ base ])
++ (with profiles; [ ])
++ [ ];
home.packages = with pkgs; [
discord-plugged
hydrus
];
};
environment.systemPackages = with pkgs; [
ffmpeg
];
users.users.infinidoge = {
uid = 1000;
hashedPassword =
"PASSWORD SET IN THE FUTURE";
description = "Infinidoge";
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.zsh;
};
}