This commit is contained in:
dusk 2022-05-28 14:44:46 +03:00
parent f45408c2ce
commit 475368203b
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
6 changed files with 36 additions and 18 deletions

View File

@ -203,6 +203,7 @@ in {
}; };
virtualisation = { virtualisation = {
waydroid.enable = false;
podman.enable = true; podman.enable = true;
libvirtd.enable = false; libvirtd.enable = false;
}; };

View File

@ -1,7 +1,7 @@
{...}: { {...}: {
i18n = { i18n = {
defaultLocale = "tr_TR.UTF-8"; defaultLocale = "en_US.UTF-8";
supportedLocales = ["tr_TR.UTF-8/UTF-8" "en_US.UTF-8/UTF-8"]; supportedLocales = ["en_US.UTF-8/UTF-8" "tr_TR.UTF-8/UTF-8"];
}; };
time.timeZone = "Turkey"; time.timeZone = "Turkey";
services.xserver.layout = "tr"; services.xserver.layout = "tr";

View File

@ -142,6 +142,6 @@ in {
diff-closures /run/current-system "$systemConfig" diff-closures /run/current-system "$systemConfig"
''; '';
users.mutableUsers = false; users.mutableUsers = false;
programs.command-not-found.enable = false; programs.command-not-found.enable = true;
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
} }

Binary file not shown.

11
treefmt.toml Normal file
View File

@ -0,0 +1,11 @@
# One CLI to format the code tree - https://github.com/numtide/treefmt
[formatter.nix]
# Formatter to run
command = "alejandra"
# Command-line arguments for the command
options = []
# Glob pattern of files to include
includes = [ "*.nix" ]
# Glob patterns of files to exclude
excludes = []

View File

@ -183,8 +183,19 @@ in {
cloudflared cloudflared
ripcord ripcord
]; ];
shellAliases =
nixosConfig.environment.shellAliases
// {
harmony-ssh = ''
${pkgBin "mosh"} root@chat.harmonyapp.io
'';
};
sessionVariables = {
NIX_AUTO_RUN = 1;
};
}; };
programs = { programs = {
command-not-found.enable = nixosConfig.programs.command-not-found.enable;
firefox = { firefox = {
enable = true; enable = true;
}; };
@ -192,22 +203,24 @@ in {
enable = true; enable = true;
package = pkgs.chromium; package = pkgs.chromium;
extensions = [ extensions = [
"gcbommkclmclpchllfjekcdonpmejbdp"
# https everywhere # https everywhere
"cjpalhdlnbpafiamejdnhcphjbkeiagm" "gcbommkclmclpchllfjekcdonpmejbdp"
# ublock # ublock
"nngceckbapebfimnlniiiahkandclblb" "cjpalhdlnbpafiamejdnhcphjbkeiagm"
# bitwarden # bitwarden
"ldpochfccmkkmhdbclfhpagapcfdljkj" "nngceckbapebfimnlniiiahkandclblb"
# decentraleyes # decentraleyes
"annfbnbieaamhaimclajlajpijgkdblo" "ldpochfccmkkmhdbclfhpagapcfdljkj"
# dark theme # dark theme
"eimadpbcbfnmbkopoojfekhnkhdbieeh" "annfbnbieaamhaimclajlajpijgkdblo"
# dark reader # dark reader
"hlepfoohegkhhmjieoechaddaejaokhf" "eimadpbcbfnmbkopoojfekhnkhdbieeh"
# github refined # github refined
"pmcmeagblkinmogikoikkdjiligflglb" "hlepfoohegkhhmjieoechaddaejaokhf"
# privacy redirect # privacy redirect
"pmcmeagblkinmogikoikkdjiligflglb"
# pronoundb
"nblkbiljcjfemkfjnhoobnojjgjdmknf"
]; ];
}; };
git = { git = {
@ -279,13 +292,6 @@ in {
eval "$(zoxide init zsh)" eval "$(zoxide init zsh)"
''; '';
shellAliases =
nixosConfig.environment.shellAliases
// {
harmony-ssh = ''
${pkgBin "mosh"} root@chat.harmonyapp.io
'';
};
}; };
fzf.enable = true; fzf.enable = true;
vscode = { vscode = {