Renamed application file
Some checks failed
NixOS Configuration Check / nixos-check (push) Failing after 22s

This commit is contained in:
2025-04-24 21:05:17 +01:00
parent 132f860713
commit bd3eca6f69
2 changed files with 3 additions and 3 deletions

35
modules/applications.nix Normal file
View File

@@ -0,0 +1,35 @@
{ config, pkgs, ... }:
{
programs = {
zsh.enable = true;
ssh.startAgent = true;
hyprland = {
enable = true;
xwayland.enable = true;
}
};
services.displayManager = {
enable = true;
defaultSession = "hyprland";
};
environment.systemPackages = with pkgs; [
alacritty # Terminal
brave # Browser
helix # Text editor
rustc cargo # Rust
go # Go
nodejs # Node.js
discordo
spotify-player
bitwarden
freshfetch # Fetch utility
git
cryptsetup
parted
vim
htop
];
}