aboutsummaryrefslogtreecommitdiff
path: root/nixos/configuration.nix
diff options
context:
space:
mode:
authorspl3g <spleefer6@yandex.ru>2023-11-29 00:22:23 +0300
committerspl3g <spleefer6@yandex.ru>2023-11-29 00:22:23 +0300
commit2fcdab89e98354f5a69cfe1c3dfa23e9d04f60b8 (patch)
treef3a80376fddcf87c86c72a327ba4ba103900fd7b /nixos/configuration.nix
parentddd3490dfb592417163e801994a60854dac135fe (diff)
update configs
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r--nixos/configuration.nix19
1 files changed, 9 insertions, 10 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix
index 068db8b..f7530ba 100644
--- a/nixos/configuration.nix
+++ b/nixos/configuration.nix
@@ -48,21 +48,25 @@
# Deduplicate and optimize nix store
auto-optimise-store = true;
# Enable cachix
- substituters = [ "https://nix-gaming.cachix.org" ];
- trusted-public-keys = [ "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=" ];
-
};
};
time.timeZone = "Europe/Moscow";
networking.hostName = "ltrr";
- networking.networkmanager.enable = true;
+ networking.networkmanager = {
+ enable = true;
+ };
+
+ networking.firewall.enable = false;
+ networking.nftables.enable = true;
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
+ services.openssh.enable = true;
+
services = {
xserver = {
enable = true;
@@ -111,18 +115,13 @@
alsa.enable = true;
pulse.enable = true;
jack.enable = true;
- };
-
- virtualisation.virtualbox.host.enable = true;
- users.extraGroups.vboxusers.members = [ "jerpo" ];
+ };
environment.systemPackages = with pkgs; [
vim
git
- btrfs-progs
ntfs3g
xorg.xinit
- carapace
];
services.udisks2 = {
enable = true;