-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df5f213
commit 95dc97a
Showing
5 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
config, | ||
isInstall, | ||
lib, | ||
pkgs, | ||
... | ||
}: | ||
{ | ||
environment = { | ||
systemPackages = | ||
with pkgs; | ||
lib.optionals isInstall [ | ||
lomiri.morph-browser | ||
lomiri.lomiri-terminal-app | ||
lomiri.lomiri-clock-app | ||
lomiri.lomiri-filemanager-app | ||
lomiri.lomiri-camera-app | ||
lomiri.lomiri-calculator-app | ||
lomiri.teleports | ||
unstable.lomiri.lomiri-gallery-app | ||
unstable.lomiri.lomiri-docviewer-app | ||
]; | ||
}; | ||
|
||
programs = { | ||
dconf.profiles.user.databases = [ | ||
{ | ||
settings = with lib.gvariant; { | ||
"org/gnome/desktop/interface" = { | ||
clock-format = "24h"; | ||
color-scheme = "prefer-dark"; | ||
cursor-size = mkInt32 48; | ||
cursor-theme = "catppuccin-mocha-blue-cursors"; | ||
document-font-name = "Work Sans 12"; | ||
font-name = "Work Sans 12"; | ||
gtk-theme = "catppuccin-mocha-blue-standard"; | ||
gtk-enable-primary-paste = true; | ||
icon-theme = "Papirus-Dark"; | ||
monospace-font-name = "FiraCode Nerd Font Mono Medium 13"; | ||
text-scaling-factor = mkDouble 1.0; | ||
}; | ||
|
||
"org/gnome/desktop/sound" = { | ||
theme-name = "freedesktop"; | ||
}; | ||
|
||
"org/gtk/gtk4/Settings/FileChooser" = { | ||
clock-format = "24h"; | ||
}; | ||
|
||
"org/gtk/Settings/FileChooser" = { | ||
clock-format = "24h"; | ||
}; | ||
}; | ||
} | ||
]; | ||
}; | ||
services.xserver.displayManager.lightdm.greeters.lomiri.enable = true; | ||
services.desktopManager.lomiri.enable = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
iso-console |