flake/users/annette/home-manager.nix

32 lines
1 KiB
Nix
Raw Normal View History

2023-09-25 20:01:36 +02:00
{ config, pkgs, ... }:
{
home-manager.users.annette = { pkgs, ... }: {
2023-09-25 20:01:36 +02:00
home.packages = with pkgs; [
2024-01-02 22:52:51 +01:00
borgbackup # Deduplicating archiver with compression and encryption
2023-09-25 20:01:36 +02:00
bleachbit # PC Cleaner
2023-09-28 02:56:40 +02:00
brave # Browser
2023-09-25 20:01:36 +02:00
easytag # Music Tag Editor
2023-10-02 20:18:10 +02:00
firefox # Browser
libsForQt5.kolourpaint # Painting Application
2023-09-25 20:01:36 +02:00
kitty # Terminal Emulator
mpv # Media Player
nomachine-client # NoMachine remote desktop client (nxplayer)
onlyoffice-bin # Office Suite
2023-09-28 02:56:40 +02:00
retroarchFull # Multi-Platform Emulator
2023-09-25 20:01:36 +02:00
smplayer # Media Player
speedcrunch # Calculator
strawberry # Media Player
vscodium # Code Editor
];
imports = [
../../config/config.nix
../../common/git.nix
../../common/vscodium.nix
];
home.stateVersion = "23.05";
2023-09-25 20:01:36 +02:00
};
}