shelman->patagia

This commit is contained in:
Daniel Lundin 2024-09-02 14:43:17 +02:00
parent ad56904021
commit 9bbd3fa12e
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI
14 changed files with 26 additions and 25 deletions

View file

@ -19,5 +19,5 @@
./wezterm.nix
];
options.shelman.desktop.enable = lib.mkEnableOption "Desktop environment";
options.patagia.desktop.enable = lib.mkEnableOption "Desktop environment";
}

View file

@ -19,7 +19,7 @@ let
};
in
{
config = lib.mkIf config.shelman.desktop.enable {
config = lib.mkIf config.patagia.desktop.enable {
home.packages = with pkgs; [
inputs.ghostty.packages.${pkgs.system}.default

View file

@ -6,7 +6,7 @@
}:
with lib.hm.gvariant;
{
config = lib.mkIf config.shelman.desktop.enable {
config = lib.mkIf config.patagia.desktop.enable {
home.packages = with pkgs; [
gnome-tweaks
gnome-pomodoro

View file

@ -5,7 +5,7 @@
...
}:
{
config = lib.mkIf config.shelman.desktop.enable {
config = lib.mkIf config.patagia.desktop.enable {
home.packages = with pkgs; [ tor-browser ];

View file

@ -1,6 +1,6 @@
{ config, lib, ... }:
{
config = lib.mkIf config.shelman.desktop.enable {
config = lib.mkIf config.patagia.desktop.enable {
programs.wezterm = {
enable = true;

View file

@ -1,6 +1,6 @@
{ inputs, pkgs, ... }:
{
shelman = {
patagia = {
desktop.enable = true;
};