updates
This commit is contained in:
parent
3c76f9a158
commit
8a98c0df58
4 changed files with 30 additions and 22 deletions
|
@ -80,7 +80,11 @@ in
|
|||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
networking.networkmanager = {
|
||||
enable = true;
|
||||
wifi.backend = "iwd";
|
||||
firewallBackend = "nftables";
|
||||
};
|
||||
networking.interfaces.wlp0s20f3.useDHCP = true;
|
||||
|
||||
fileSystems."/".options = [ "compress=zstd" ];
|
||||
|
|
|
@ -77,6 +77,9 @@
|
|||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox-devedition-bin;
|
||||
# profiles.dev-edition-default = {
|
||||
# isDefault = true;
|
||||
# };
|
||||
};
|
||||
|
||||
programs.vscode = {
|
||||
|
@ -101,11 +104,12 @@
|
|||
};
|
||||
};
|
||||
|
||||
programs.zsh.sessionVariables = {
|
||||
DIRENV_LOG_FORMAT = "";
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
sessionVariables = {
|
||||
DIRENV_LOG_FORMAT = "";
|
||||
};
|
||||
};
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
||||
services.syncthing.enable = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue