DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

ref: b59eb2682c9b63c2452ad88969a7013dc929a1ab nix-arta/modules/hosts/ws/w/_nixos/not-managed-by-modules-yet.nix -rw-r--r-- 460 bytes
b59eb268Jonni Liljamo flake: update hyprland and hy3 to 0.53.* 15 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{pkgs, ...}: {
  environment.systemPackages = with pkgs; [
    keepassxc
    virt-viewer

    ansible
    openssl
    rsync
    flatbuffers
  ];

  programs.firefox.enable = true;

  services.logind = {
    settings.Login.HandlePowerKey = "suspend";
    settings.Login.HandleLidSwitch = "suspend";
  };

  programs.wireshark = {
    enable = true;
    package = pkgs.wireshark;
  };

  virtualisation.docker.enable = true;

  services.fprintd.enable = true;
}