28 lines
568 B
Nix
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;
|
|
};
|
|
}
|