organized and updated config #1
2
user/README.md
Normal file
2
user/README.md
Normal file
@@ -0,0 +1,2 @@
|
||||
* `packages`: packages that does not require any wrap or config
|
||||
* `wrapped`: packages that is wrapped with config
|
||||
5
user/default.nix
Normal file
5
user/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{ ... }: {
|
||||
imports = [
|
||||
./packages
|
||||
];
|
||||
}
|
||||
6
user/packages/chromium/default.nix
Normal file
6
user/packages/chromium/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
chromium
|
||||
];
|
||||
}
|
||||
6
user/packages/dbeaver/default.nix
Normal file
6
user/packages/dbeaver/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
dbeaver-bin
|
||||
];
|
||||
}
|
||||
24
user/packages/default.nix
Normal file
24
user/packages/default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
6
user/packages/firefox-dev-edition/default.nix
Normal file
6
user/packages/firefox-dev-edition/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox-devedition-bin
|
||||
];
|
||||
}
|
||||
6
user/packages/firefox/default.nix
Normal file
6
user/packages/firefox/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
firefox
|
||||
];
|
||||
}
|
||||
6
user/packages/gimp/default.nix
Normal file
6
user/packages/gimp/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
gimp
|
||||
];
|
||||
}
|
||||
6
user/packages/gitui/default.nix
Normal file
6
user/packages/gitui/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
gitui
|
||||
];
|
||||
}
|
||||
6
user/packages/inkscape/default.nix
Normal file
6
user/packages/inkscape/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
inkscape
|
||||
];
|
||||
}
|
||||
6
user/packages/kdenlive/default.nix
Normal file
6
user/packages/kdenlive/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
kdenlive
|
||||
];
|
||||
}
|
||||
6
user/packages/keepassxc/default.nix
Normal file
6
user/packages/keepassxc/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
keepassxc
|
||||
];
|
||||
}
|
||||
6
user/packages/libreoffice-fresh/default.nix
Normal file
6
user/packages/libreoffice-fresh/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
libreoffice-fresh
|
||||
];
|
||||
}
|
||||
6
user/packages/mangohud/default.nix
Normal file
6
user/packages/mangohud/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
mangohud
|
||||
];
|
||||
}
|
||||
6
user/packages/minecraft/default.nix
Normal file
6
user/packages/minecraft/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
minecraft
|
||||
];
|
||||
}
|
||||
6
user/packages/mpv/default.nix
Normal file
6
user/packages/mpv/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
mpv
|
||||
];
|
||||
}
|
||||
6
user/packages/obs-studio/default.nix
Normal file
6
user/packages/obs-studio/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
obs-studio
|
||||
];
|
||||
}
|
||||
6
user/packages/owncloud-client/default.nix
Normal file
6
user/packages/owncloud-client/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
owncloud-client
|
||||
];
|
||||
}
|
||||
6
user/packages/qtcreator/default.nix
Normal file
6
user/packages/qtcreator/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
qtcreator
|
||||
];
|
||||
}
|
||||
6
user/packages/thunderbird/default.nix
Normal file
6
user/packages/thunderbird/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
thunderbird
|
||||
];
|
||||
}
|
||||
6
user/packages/tldr/default.nix
Normal file
6
user/packages/tldr/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
tldr
|
||||
];
|
||||
}
|
||||
6
user/packages/vlc/default.nix
Normal file
6
user/packages/vlc/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
vlc
|
||||
];
|
||||
}
|
||||
6
user/packages/yt-dlp/default.nix
Normal file
6
user/packages/yt-dlp/default.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
yt-dlp
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user