Compare commits
No commits in common. "5f061310763769fdebf6e3b1e9949a9fa033cfb7" and "04af4df022401dfcd27627a2c7d7f5d9046693df" have entirely different histories.
5f06131076
...
04af4df022
3 changed files with 4 additions and 30 deletions
|
@ -1 +1 @@
|
||||||
50
|
250
|
|
@ -2,8 +2,8 @@ Some(([
|
||||||
"com.system76.CosmicPanelAppButton",
|
"com.system76.CosmicPanelAppButton",
|
||||||
"com.system76.CosmicAppletWorkspaces",
|
"com.system76.CosmicAppletWorkspaces",
|
||||||
], [
|
], [
|
||||||
"com.system76.CosmicAppletStatusArea",
|
|
||||||
"com.system76.CosmicAppletInputSources",
|
"com.system76.CosmicAppletInputSources",
|
||||||
|
"com.system76.CosmicAppletStatusArea",
|
||||||
"com.system76.CosmicAppletTiling",
|
"com.system76.CosmicAppletTiling",
|
||||||
"com.system76.CosmicAppletAudio",
|
"com.system76.CosmicAppletAudio",
|
||||||
"com.system76.CosmicAppletNetwork",
|
"com.system76.CosmicAppletNetwork",
|
||||||
|
|
|
@ -1,10 +1,4 @@
|
||||||
{
|
{ inputs, lib, pkgs, ... }:
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
self,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
cosmic-configuration = pkgs.substituteAllFiles {
|
cosmic-configuration = pkgs.substituteAllFiles {
|
||||||
|
@ -26,7 +20,6 @@ in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
"${inputs.cosmic-modules}/nixos/cosmic/module.nix"
|
"${inputs.cosmic-modules}/nixos/cosmic/module.nix"
|
||||||
"${self}/nix-os/generic/dconf.nix"
|
|
||||||
];
|
];
|
||||||
config = {
|
config = {
|
||||||
services.desktopManager.cosmic.enable = true;
|
services.desktopManager.cosmic.enable = true;
|
||||||
|
@ -36,26 +29,7 @@ in
|
||||||
];
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(lib.hiPrio cosmic-configuration.share)
|
(lib.hiPrio cosmic-configuration.share)
|
||||||
google-cursor
|
|
||||||
];
|
];
|
||||||
services.gnome.gnome-keyring.enable = true;
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
proot.dconf = {
|
|
||||||
rules."org/gnome/desktop/interface".cursor-theme = "GoogleDot-White";
|
|
||||||
profiles.user.rulesToApply = [
|
|
||||||
"org/gnome/desktop/interface"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.sessionVariables = {
|
|
||||||
XCURSOR_SIZE = "16";
|
|
||||||
XCURSOR_THEME = "GoogleDot-White";
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.etc."xdg/gtk-3.0/settings.ini".text = ''
|
|
||||||
[Settings]
|
|
||||||
gtk-cursor-theme-name=GoogleDot-White
|
|
||||||
gtk-application-prefer-dark-theme=true
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue