home-manager: moved gui apps to common-gui.nix.

This commit is contained in:
Aly Raffauf 2024-03-24 13:15:26 -04:00
parent 0a594412ce
commit fbad743c37
7 changed files with 25 additions and 55 deletions

View file

@ -1,18 +1,5 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./gnome
./alacritty
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# warp-terminal
discord
github-desktop
obsidian
vscode
];
imports = [ ./common.nix ./common-gui.nix ./gnome ];
}

View file

@ -1,22 +1,6 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./shell
./hypr
./waybar
./mako
./bemenu
./alacritty
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# warp-terminal
discord
github-desktop
obsidian
vscode
];
imports =
[ ./common.nix ./common-gui.nix ./shell ./hypr ./waybar ./mako ./bemenu ];
}

View file

@ -1,17 +1,5 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./alacritty
];
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# warp-terminal
discord
github-desktop
obsidian
vscode
];
imports = [ ./common.nix ./common-gui.nix ];
}

View file

@ -1,8 +1,5 @@
{ config, pkgs, ... }:
{
imports = [
./common.nix
./shell
];
imports = [ ./common.nix ./shell ];
}

12
home/common-gui.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
# warp-terminal
github-desktop
obsidian
vscode
webcord
];
}

View file

@ -37,6 +37,8 @@
(setq-default fill-column 80)
(add-hook 'prog-mode-hook #'display-fill-column-indicator-mode)
(make-directory "~/Sync/org-roam")
(setq org-directory "~/Sync/org-roam/")
(setq org-roam-directory (file-truename "~/Sync/org-roam"))
(setq org-roam-dailies-directory "journal/")
(org-roam-db-autosync-mode)