summaryrefslogtreecommitdiffstats
path: root/configuration.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-22 23:48:33 -0400
committerAndrew <admonty1@protonmail.com>2025-08-22 23:48:33 -0400
commit61fd81562a9a2d7744e05b939948898e25dfb6fc (patch)
tree4c21b0e28ddf30a677089d9acb349d1b66270a7b /configuration.nix
parentscreenshot manager PRINT / SUPER+SHIFT+S (diff)
downloadnixos-61fd81562a9a2d7744e05b939948898e25dfb6fc.tar.gz
nixos-61fd81562a9a2d7744e05b939948898e25dfb6fc.tar.bz2
nixos-61fd81562a9a2d7744e05b939948898e25dfb6fc.zip
unfixed and fixed ghostty. + reformat files
Diffstat (limited to '')
-rw-r--r--configuration.nix41
1 files changed, 23 insertions, 18 deletions
diff --git a/configuration.nix b/configuration.nix
index 13d3a6b..bb6bfe2 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -2,7 +2,12 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
-{ config, pkgs, ... }:
+{
+ config,
+ pkgs,
+ inputs,
+ ...
+}:
{
imports = [
@@ -59,9 +64,9 @@
nixpkgs.config.allowUnfree = true;
programs.hyprland = {
- enable = true;
+ enable = true;
withUWSM = true;
- };
+ };
# List packages installed in system profile. To search, run:
# $ nix search wget
@@ -72,7 +77,7 @@
hyprland
kitty
libnotify
- bibata-cursors
+ bibata-cursors
];
programs.steam = {
enable = true;
@@ -103,22 +108,22 @@
nerd-fonts.jetbrains-mono
nerd-fonts.fira-code
nerd-fonts.droid-sans-mono
- noto-fonts-color-emoji
+ noto-fonts-color-emoji
];
-
- security.rtkit.enable = true;
- services.pipewire = {
- enable = true;
- audio.enable = true;
- pulse.enable = true;
- alsa.enable = true;
- };
- services.pipewire.wireplumber.enable = true;
-
- hardware = {
- opengl.enable = true;
- };
+ security.rtkit.enable = true;
+ services.pipewire = {
+ enable = true;
+ audio.enable = true;
+ pulse.enable = true;
+ alsa.enable = true;
+ };
+ services.pipewire.wireplumber.enable = true;
+ hardware = {
+ opengl = {
+ enable = true;
+ };
+ };
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.