1
0
Fork 0

Convert screenshot.sh to nix's writeShellApplication

This commit is contained in:
Avery 2024-03-19 14:00:29 +01:00
parent c6651a7eb6
commit 88c6138463
Signed by: Avery
GPG key ID: B684FD451B692E04
5 changed files with 41 additions and 40 deletions

View file

@ -1,19 +1,9 @@
{
pkgs,
config,
inputs,
...
}: {
{ pkgs, config, inputs, ... }: {
home = {
username = "avery";
homeDirectory = "/home/avery";
stateVersion = "24.05";
packages = with pkgs; [
python3
rclone
xdg-user-dirs
xdg-utils
];
packages = with pkgs; [ python3 rclone xdg-utils ];
};
programs.home-manager.enable = true;
}