chore: small changes
This commit is contained in:
parent
13a9429ace
commit
03fea6a64a
|
@ -8,7 +8,6 @@
|
||||||
networking = {
|
networking = {
|
||||||
hostName = name;
|
hostName = name;
|
||||||
domain = "fainsin.bzh";
|
domain = "fainsin.bzh";
|
||||||
nameservers = [ "127.0.0.1" "1.1.1.1" "1.0.0.1" ];
|
|
||||||
firewall = {
|
firewall = {
|
||||||
allowedTCPPorts = [
|
allowedTCPPorts = [
|
||||||
22 # ssh
|
22 # ssh
|
||||||
|
|
|
@ -94,6 +94,8 @@ in {
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
services.dbus.enable = true;
|
services.dbus.enable = true;
|
||||||
xdg.portal = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -121,6 +123,7 @@ in {
|
||||||
neovim
|
neovim
|
||||||
|
|
||||||
dconf
|
dconf
|
||||||
|
xdg-utils
|
||||||
|
|
||||||
baobab
|
baobab
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
@ -131,8 +134,11 @@ in {
|
||||||
waybar
|
waybar
|
||||||
pamixer
|
pamixer
|
||||||
swayidle
|
swayidle
|
||||||
|
swaylock
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
|
||||||
|
nixfmt
|
||||||
|
|
||||||
mpv
|
mpv
|
||||||
feh
|
feh
|
||||||
keepassxc
|
keepassxc
|
||||||
|
@ -296,13 +302,14 @@ in {
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscode;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
bbenoist.nix
|
bbenoist.nix
|
||||||
brettm12345.nixfmt-vscode
|
brettm12345.nixfmt-vscode
|
||||||
arrterian.nix-env-selector
|
arrterian.nix-env-selector
|
||||||
|
|
||||||
ms-vsliveshare.vsliveshare
|
ms-vsliveshare.vsliveshare
|
||||||
|
ms-python.vscode-pylance
|
||||||
eamodio.gitlens
|
eamodio.gitlens
|
||||||
github.copilot
|
github.copilot
|
||||||
|
|
||||||
|
@ -326,15 +333,12 @@ in {
|
||||||
"workbench.colorTheme" = "Catppuccin Mocha";
|
"workbench.colorTheme" = "Catppuccin Mocha";
|
||||||
"workbench.editor.untitled.hint" = "hidden";
|
"workbench.editor.untitled.hint" = "hidden";
|
||||||
"workbench.iconTheme" = "file-icons";
|
"workbench.iconTheme" = "file-icons";
|
||||||
|
"gitlens.telemetry.enabled" = false;
|
||||||
|
"telemetry.telemetryLevel" = "off";
|
||||||
|
"editor.inlineSuggest.enabled" = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.swaylock = {
|
|
||||||
settings = { };
|
|
||||||
# enable = true;
|
|
||||||
# package = pkgs.swaylock-effects;
|
|
||||||
};
|
|
||||||
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = rec {
|
config = rec {
|
||||||
|
|
Loading…
Reference in a new issue