Separate System and User packages
- Move user programs out of systems section and int user section - Install user packages with home manager rather than system wide
This commit is contained in:
10
user/productivity/communication.nix
Normal file
10
user/productivity/communication.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
beeper
|
||||
discord
|
||||
signal-desktop
|
||||
zoom-us
|
||||
]);
|
||||
}
|
10
user/productivity/default.nix
Normal file
10
user/productivity/default.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./office.nix
|
||||
./finance.nix
|
||||
./notes.nix
|
||||
./communication.nix
|
||||
];
|
||||
}
|
7
user/productivity/finance.nix
Normal file
7
user/productivity/finance.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
gnucash
|
||||
]);
|
||||
}
|
8
user/productivity/notes.nix
Normal file
8
user/productivity/notes.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
anytype
|
||||
logseq
|
||||
]);
|
||||
}
|
10
user/productivity/office.nix
Normal file
10
user/productivity/office.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = (with pkgs; [
|
||||
onlyoffice-bin
|
||||
xournalpp
|
||||
zathura
|
||||
libsForQt5.okular
|
||||
]);
|
||||
}
|
Reference in New Issue
Block a user