created user package directory

This commit is contained in:
2024-12-22 23:02:34 +09:00
parent c05821755c
commit 442f46f622
23 changed files with 151 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
chromium
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
dbeaver-bin
];
}

24
user/packages/default.nix Normal file
View File

@@ -0,0 +1,24 @@
{ ... }: {
imports = [
./chromium
./dbeaver
./firefox
./firefox-dev-edition
./gimp
./gitui
./inkscape
./kdenlive
./keepassxc
./libreoffice-fresh
./mangohud
./minecraft
./mpv
./obs-studio
./owncloud-client
./qtcreator
./thunderbird
./tldr
./vlc
./yt-dlp
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
firefox-devedition-bin
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, config, ... }:
{
environment.systemPackages = with pkgs; [
firefox
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gimp
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gitui
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
inkscape
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
kdenlive
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
keepassxc
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
libreoffice-fresh
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mangohud
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
minecraft
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mpv
];
}

View File

@@ -0,0 +1,6 @@
{ config, pkgs, libs, ... }:
{
environment.systemPackages = with pkgs; [
obs-studio
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
owncloud-client
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
qtcreator
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
thunderbird
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tldr
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vlc
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
yt-dlp
];
}