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 = {
waydroid.enable = false;
podman.enable = true;
libvirtd.enable = false;
};

View File

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

View File

@ -142,6 +142,6 @@ in {
diff-closures /run/current-system "$systemConfig"
'';
users.mutableUsers = false;
programs.command-not-found.enable = false;
programs.command-not-found.enable = 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
ripcord
];
shellAliases =
nixosConfig.environment.shellAliases
// {
harmony-ssh = ''
${pkgBin "mosh"} root@chat.harmonyapp.io
'';
};
sessionVariables = {
NIX_AUTO_RUN = 1;
};
};
programs = {
command-not-found.enable = nixosConfig.programs.command-not-found.enable;
firefox = {
enable = true;
};
@ -192,22 +203,24 @@ in {
enable = true;
package = pkgs.chromium;
extensions = [
"gcbommkclmclpchllfjekcdonpmejbdp"
# https everywhere
"cjpalhdlnbpafiamejdnhcphjbkeiagm"
"gcbommkclmclpchllfjekcdonpmejbdp"
# ublock
"nngceckbapebfimnlniiiahkandclblb"
"cjpalhdlnbpafiamejdnhcphjbkeiagm"
# bitwarden
"ldpochfccmkkmhdbclfhpagapcfdljkj"
"nngceckbapebfimnlniiiahkandclblb"
# decentraleyes
"annfbnbieaamhaimclajlajpijgkdblo"
"ldpochfccmkkmhdbclfhpagapcfdljkj"
# dark theme
"eimadpbcbfnmbkopoojfekhnkhdbieeh"
"annfbnbieaamhaimclajlajpijgkdblo"
# dark reader
"hlepfoohegkhhmjieoechaddaejaokhf"
"eimadpbcbfnmbkopoojfekhnkhdbieeh"
# github refined
"pmcmeagblkinmogikoikkdjiligflglb"
"hlepfoohegkhhmjieoechaddaejaokhf"
# privacy redirect
"pmcmeagblkinmogikoikkdjiligflglb"
# pronoundb
"nblkbiljcjfemkfjnhoobnojjgjdmknf"
];
};
git = {
@ -279,13 +292,6 @@ in {
eval "$(zoxide init zsh)"
'';
shellAliases =
nixosConfig.environment.shellAliases
// {
harmony-ssh = ''
${pkgBin "mosh"} root@chat.harmonyapp.io
'';
};
};
fzf.enable = true;
vscode = {