Shift home config to enable by desktop, work out more details later
This commit is contained in:
parent
d873588c59
commit
77168ba9c7
37 changed files with 120 additions and 127 deletions
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
ffmpeg
|
||||
ffmpegthumbnailer
|
||||
puddletag
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
dolphin-emu
|
||||
cemu
|
||||
ryujinx
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
heroic
|
||||
prismlauncher
|
||||
steam
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
bc
|
||||
fractal
|
||||
libreoffice
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
{ pkgs, blender, ... }:
|
||||
{ config, lib, pkgs, blender, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [ blender.overlays.default ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
audacity
|
||||
blender_4_3
|
||||
krita
|
||||
];
|
||||
config = lib.mkIf config.home.desktop.enable {
|
||||
nixpkgs.overlays = [ blender.overlays.default ];
|
||||
home.packages = with pkgs; [
|
||||
audacity
|
||||
blender_4_3
|
||||
krita
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
moonlight-qt
|
||||
rustdesk-flutter
|
||||
];
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
||||
freerdp
|
||||
gpauth
|
||||
remmina
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue