mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 02:20:14 +01:00
move some extensions from shared module to user module
This commit is contained in:
parent
8b48c54f48
commit
161d78902e
|
@ -26,10 +26,6 @@
|
||||||
"appindicatorsupport@rgcjonas.gmail.com"
|
"appindicatorsupport@rgcjonas.gmail.com"
|
||||||
"workspace-indicator@gnome-shell-extensions.gcampax.github.com"
|
"workspace-indicator@gnome-shell-extensions.gcampax.github.com"
|
||||||
"caffeine@patapon.info"
|
"caffeine@patapon.info"
|
||||||
"GPaste@gnome-shell-extensions.gnome.org"
|
|
||||||
"gsconnect@andyholmes.github.io"
|
|
||||||
"solaar-extension@sidevesh"
|
|
||||||
"AlphabeticalAppGrid@stuarthayhurst"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"ca/desrt/dconf-editor" = {
|
"ca/desrt/dconf-editor" = {
|
||||||
|
|
|
@ -20,11 +20,6 @@
|
||||||
++ (with gnomeExtensions; [
|
++ (with gnomeExtensions; [
|
||||||
caffeine
|
caffeine
|
||||||
appindicator
|
appindicator
|
||||||
gsconnect
|
|
||||||
# battery-health-charging
|
|
||||||
quick-settings-tweaker
|
|
||||||
solaar-extension
|
|
||||||
alphabetical-app-grid
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
dconf.settings = import ./gnome-shared-dconf.nix;
|
dconf.settings = import ./gnome-shared-dconf.nix;
|
||||||
|
|
|
@ -1,64 +1,68 @@
|
||||||
inputs@{ pkgs, ... }:
|
inputs@{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
programs = {
|
imports = [ ./gnome.nix ];
|
||||||
home-manager.enable = true;
|
|
||||||
fzf.enable = true;
|
|
||||||
zsh = import ./zsh.nix inputs;
|
|
||||||
git = import ./git.nix;
|
|
||||||
vscode = import ./vscode.nix inputs;
|
|
||||||
ssh = import ./ssh.nix;
|
|
||||||
|
|
||||||
direnv = {
|
config = {
|
||||||
enable = true;
|
programs = {
|
||||||
nix-direnv.enable = true;
|
home-manager.enable = true;
|
||||||
|
fzf.enable = true;
|
||||||
|
zsh = import ./zsh.nix inputs;
|
||||||
|
git = import ./git.nix;
|
||||||
|
vscode = import ./vscode.nix inputs;
|
||||||
|
ssh = import ./ssh.nix;
|
||||||
|
|
||||||
|
direnv = {
|
||||||
|
enable = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
eza = {
|
||||||
|
enable = true;
|
||||||
|
git = true;
|
||||||
|
icons = "auto";
|
||||||
|
extraOptions = [
|
||||||
|
"--group-directories-first"
|
||||||
|
"--header"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
eza = {
|
editorconfig = import ./editorconfig.nix;
|
||||||
enable = true;
|
|
||||||
git = true;
|
home.packages = with pkgs; [
|
||||||
icons = "auto";
|
keepassxc
|
||||||
extraOptions = [
|
insync
|
||||||
"--group-directories-first"
|
|
||||||
"--header"
|
telegram-desktop
|
||||||
];
|
element-desktop
|
||||||
|
|
||||||
|
wireguard-tools
|
||||||
|
wirelesstools
|
||||||
|
|
||||||
|
alejandra # nix formatter
|
||||||
|
|
||||||
|
kdiff3
|
||||||
|
jetbrains-toolbox
|
||||||
|
];
|
||||||
|
|
||||||
|
home.file."policy.json" = {
|
||||||
|
target = ".config/containers/policy.json";
|
||||||
|
text = ''
|
||||||
|
{
|
||||||
|
"default": [
|
||||||
|
{
|
||||||
|
"type": "insecureAcceptAnything"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"transports":
|
||||||
|
{
|
||||||
|
"docker-daemon":
|
||||||
|
{
|
||||||
|
"": [{"type":"insecureAcceptAnything"}]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
editorconfig = import ./editorconfig.nix;
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
keepassxc
|
|
||||||
insync
|
|
||||||
|
|
||||||
telegram-desktop
|
|
||||||
element-desktop
|
|
||||||
|
|
||||||
wireguard-tools
|
|
||||||
wirelesstools
|
|
||||||
|
|
||||||
alejandra # nix formatter
|
|
||||||
|
|
||||||
kdiff3
|
|
||||||
jetbrains-toolbox
|
|
||||||
];
|
|
||||||
|
|
||||||
home.file."policy.json" = {
|
|
||||||
target = ".config/containers/policy.json";
|
|
||||||
text = ''
|
|
||||||
{
|
|
||||||
"default": [
|
|
||||||
{
|
|
||||||
"type": "insecureAcceptAnything"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"transports":
|
|
||||||
{
|
|
||||||
"docker-daemon":
|
|
||||||
{
|
|
||||||
"": [{"type":"insecureAcceptAnything"}]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
23
home/vinzenz/gnome.nix
Normal file
23
home/vinzenz/gnome.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
inputs@{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
home.packages = with pkgs.gnomeExtensions; [
|
||||||
|
gsconnect
|
||||||
|
# battery-health-charging
|
||||||
|
quick-settings-tweaker
|
||||||
|
solaar-extension
|
||||||
|
alphabetical-app-grid
|
||||||
|
];
|
||||||
|
|
||||||
|
dconf.settings = {
|
||||||
|
"org/gnome/shell" = {
|
||||||
|
enabled-extensions = [
|
||||||
|
"GPaste@gnome-shell-extensions.gnome.org"
|
||||||
|
"gsconnect@andyholmes.github.io"
|
||||||
|
"solaar-extension@sidevesh"
|
||||||
|
"AlphabeticalAppGrid@stuarthayhurst"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue