add telegram

This commit is contained in:
Sridhar Ratnakumar 2024-10-30 15:42:12 -04:00
parent b1e7aa5e74
commit 70b4c534de
No known key found for this signature in database
2 changed files with 8 additions and 10 deletions

View file

@ -54,15 +54,6 @@
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
brave
vscode
zed-editor
];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions

View file

@ -1,4 +1,4 @@
{ flake, ... }:
{ flake, pkgs, ... }:
let
inherit (flake) inputs;
@ -23,6 +23,13 @@ in
programs.nix-ld.enable = true; # for vscode server
environment.systemPackages = with pkgs; [
brave
vscode
zed-editor
telegram-desktop
];
# Workaround the annoying `Failed to start Network Manager Wait Online` error on switch.
# https://github.com/NixOS/nixpkgs/issues/180175
systemd.services.NetworkManager-wait-online.enable = false;