system specific stuff
This commit is contained in:
parent
48d80fc4b8
commit
eb1fcb8205
2 changed files with 21 additions and 7 deletions
|
@ -11,8 +11,8 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
# boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
# boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
||||||
|
@ -48,11 +48,10 @@
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
|
|
||||||
# Enable the XFCE Desktop Environment.
|
|
||||||
# services.xserver.displayManager.lightdm.enable = true;
|
|
||||||
|
|
||||||
snowhawk.dwm.enable = true;
|
snowhawk.dwm.enable = true;
|
||||||
|
|
||||||
|
# Enable the XFCE Desktop Environment.
|
||||||
|
# services.xserver.displayManager.lightdm.enable = true;
|
||||||
# services.xserver.desktopManager.budgie.enable = true;
|
# services.xserver.desktopManager.budgie.enable = true;
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
|
@ -107,15 +106,23 @@
|
||||||
unzip
|
unzip
|
||||||
fzf
|
fzf
|
||||||
tree
|
tree
|
||||||
|
libsecret
|
||||||
|
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
|
|
||||||
gparted
|
gparted
|
||||||
arandr
|
arandr
|
||||||
|
flameshot
|
||||||
|
|
||||||
# steam
|
# steam
|
||||||
# spotify
|
spotify
|
||||||
# discord
|
discord
|
||||||
|
steam-run
|
||||||
|
|
||||||
|
xivlauncher
|
||||||
|
# (xivlauncher.override {
|
||||||
|
# useSteamRun = false;
|
||||||
|
# })
|
||||||
|
|
||||||
git-credential-oauth
|
git-credential-oauth
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,11 @@
|
||||||
services.dunst.enable = true;
|
services.dunst.enable = true;
|
||||||
services.unclutter.enable = true;
|
services.unclutter.enable = true;
|
||||||
|
|
||||||
|
programs.chromium = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.google-chrome;
|
||||||
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# (pkgs.writeShellScriptBin "my-hello" ''
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||||
# echo "Hello, ${config.home.username}!"
|
# echo "Hello, ${config.home.username}!"
|
||||||
|
@ -38,6 +43,8 @@
|
||||||
"${config.home.homeDirectory}/.cargo/bin"
|
"${config.home.homeDirectory}/.cargo/bin"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
# wayland.windowManager.hyprland = {
|
# wayland.windowManager.hyprland = {
|
||||||
# enable = true;
|
# enable = true;
|
||||||
# package = pkgs.hyprland;
|
# package = pkgs.hyprland;
|
||||||
|
|
Loading…
Reference in a new issue