Some checks failed
NixOS Configuration Check / nixos-check (push) Failing after 21s
36 lines
566 B
Nix
36 lines
566 B
Nix
{ 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
|
|
];
|
|
}
|