From eb1fcb8205ea73bcdc5db32941399c9bb3918574 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 27 Jun 2024 16:23:31 -0700 Subject: [PATCH] system specific stuff --- hosts/nixos/configuration.nix | 21 ++++++++++++++------- hosts/nixos/home.nix | 7 +++++++ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index 1f6cab5..01e9bf1 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -11,8 +11,8 @@ ]; # Bootloader. - # boot.loader.systemd-boot.enable = true; - # boot.loader.efi.canTouchEfiVariables = true; + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. @@ -48,11 +48,10 @@ # Enable the X11 windowing system. services.xserver.enable = true; - # Enable the XFCE Desktop Environment. - # services.xserver.displayManager.lightdm.enable = true; - snowhawk.dwm.enable = true; + # Enable the XFCE Desktop Environment. + # services.xserver.displayManager.lightdm.enable = true; # services.xserver.desktopManager.budgie.enable = true; # Configure keymap in X11 @@ -107,15 +106,23 @@ unzip fzf tree + libsecret nix-output-monitor gparted arandr + flameshot # steam - # spotify - # discord + spotify + discord + steam-run + + xivlauncher + # (xivlauncher.override { + # useSteamRun = false; + # }) git-credential-oauth diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index cf59074..228cd01 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -18,6 +18,11 @@ services.dunst.enable = true; services.unclutter.enable = true; + programs.chromium = { + enable = true; + package = pkgs.google-chrome; + }; + home.packages = with pkgs; [ # (pkgs.writeShellScriptBin "my-hello" '' # echo "Hello, ${config.home.username}!" @@ -38,6 +43,8 @@ "${config.home.homeDirectory}/.cargo/bin" ]; + nixpkgs.config.allowUnfree = true; + # wayland.windowManager.hyprland = { # enable = true; # package = pkgs.hyprland;