nix/packages/users.nix

28 lines
537 B
Nix
Raw Permalink Normal View History

2025-02-14 13:04:04 -06:00
{
2025-02-14 13:31:18 -06:00
"deck" =
let
system = "x86_64-linux";
pkgs = unstable.pkgsFor system;
in
2025-02-14 13:04:04 -06:00
home-manager-unstable.lib.homeManagerConfiguration {
inherit pkgs;
modules = with homeManagerModules; [
common
{
home = {
homeDirectory = "/home/deck";
username = "deck";
stateVersion = "24.11";
};
}
{
home.packages = with pkgs; [
ludusavi
rclone
];
}
linux
];
};
}