mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
GNOME extensions
This commit is contained in:
parent
e7e8a83532
commit
94d5206f43
@ -14,6 +14,7 @@
|
|||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
../../modules/base.nix
|
../../modules/base.nix
|
||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
|
../../modules/gnome-extensions.nix
|
||||||
../../modules/git.nix
|
../../modules/git.nix
|
||||||
../../modules/zsh.nix
|
../../modules/zsh.nix
|
||||||
../../modules/print-and-scan.nix
|
../../modules/print-and-scan.nix
|
||||||
|
@ -7,6 +7,7 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
(import "${home-manager}/nixos")
|
(import "${home-manager}/nixos")
|
||||||
../../modules/base.home.nix
|
../../modules/base.home.nix
|
||||||
|
../../modules/gnome-extensions.home.nix
|
||||||
../../modules/git.home.nix
|
../../modules/git.home.nix
|
||||||
../../modules/zsh.home.nix
|
../../modules/zsh.home.nix
|
||||||
# TODO
|
# TODO
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
../../modules/base.nix
|
../../modules/base.nix
|
||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
|
../../modules/gnome-extensions.nix
|
||||||
../../modules/git.nix
|
../../modules/git.nix
|
||||||
../../modules/zsh.nix
|
../../modules/zsh.nix
|
||||||
../../modules/print-and-scan.nix
|
../../modules/print-and-scan.nix
|
||||||
|
@ -7,6 +7,7 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
(import "${home-manager}/nixos")
|
(import "${home-manager}/nixos")
|
||||||
../../modules/base.home.nix
|
../../modules/base.home.nix
|
||||||
|
../../modules/gnome-extensions.home.nix
|
||||||
../../modules/git.home.nix
|
../../modules/git.home.nix
|
||||||
../../modules/zsh.home.nix
|
../../modules/zsh.home.nix
|
||||||
# TODO
|
# TODO
|
||||||
|
@ -1,9 +1,6 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
/* Enable home-manager to configure GNOME */
|
|
||||||
programs.dconf.enable = true;
|
|
||||||
|
|
||||||
home-manager.users.yoda = {
|
home-manager.users.yoda = {
|
||||||
/* The home.stateVersion option does not have a default and must be set */
|
/* The home.stateVersion option does not have a default and must be set */
|
||||||
/* https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion */
|
/* https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion */
|
||||||
|
15
modules/gnome-extensions.home.nix
Normal file
15
modules/gnome-extensions.home.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
/* Enable home-manager to configure GNOME */
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
|
home-manager.users.yoda = {
|
||||||
|
|
||||||
|
dconf.settings = {
|
||||||
|
# Enable GNOME extensions.
|
||||||
|
"org/gnome/shell".enabled-extensions = [ pkgs.gnomeExtensions.caffeine.extensionUuid ];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
9
modules/gnome-extensions.nix
Normal file
9
modules/gnome-extensions.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
users.users.yoda = {
|
||||||
|
packages = with pkgs; [
|
||||||
|
gnomeExtensions.caffeine
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -35,6 +35,7 @@
|
|||||||
|
|
||||||
# Graphical Apps
|
# Graphical Apps
|
||||||
gnome.gnome-tweaks
|
gnome.gnome-tweaks
|
||||||
|
gnome.dconf-editor
|
||||||
firefox
|
firefox
|
||||||
tor-browser-bundle-bin
|
tor-browser-bundle-bin
|
||||||
thunderbird # email
|
thunderbird # email
|
||||||
|
Loading…
Reference in New Issue
Block a user