Compare commits
No commits in common. "0f94e0cf1c09b733ced7aeff60bb387779aab9d7" and "41892031926df1fab6afe5446bba2cae478baa8c" have entirely different histories.
0f94e0cf1c
...
4189203192
|
@ -5,14 +5,11 @@
|
||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [ inputs.home-manager.nixosModules.default ];
|
||||||
inputs.home-manager.nixosModules.default
|
|
||||||
./modules/dwm.nix
|
|
||||||
];
|
|
||||||
|
|
||||||
# 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.
|
||||||
|
|
||||||
|
@ -49,11 +46,8 @@
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
|
|
||||||
# Enable the XFCE Desktop Environment.
|
# Enable the XFCE Desktop Environment.
|
||||||
# services.xserver.displayManager.lightdm.enable = true;
|
services.xserver.displayManager.lightdm.enable = true;
|
||||||
|
services.xserver.desktopManager.budgie.enable = true;
|
||||||
snowhawk.dwm.enable = true;
|
|
||||||
|
|
||||||
# services.xserver.desktopManager.budgie.enable = true;
|
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
--- a/config.def.h 2022-10-04 10:38:18.000000000 -0700
|
--- config.def.h 2022-10-04 10:38:18.000000000 -0700
|
||||||
+++ b/config.def.h 2024-05-31 01:23:54.242390341 -0700
|
+++ config.h 2024-05-31 01:23:54.242390341 -0700
|
||||||
@@ -1,115 +1,120 @@
|
@@ -1,115 +1,120 @@
|
||||||
/* See LICENSE file for copyright and license details. */
|
/* See LICENSE file for copyright and license details. */
|
||||||
|
|
||||||
|
|
|
@ -16,13 +16,13 @@ in
|
||||||
window = {
|
window = {
|
||||||
opacity = 0.98;
|
opacity = 0.98;
|
||||||
};
|
};
|
||||||
# colors = {
|
colors = {
|
||||||
# primary.background = "#050505";
|
primary.background = "#050505";
|
||||||
# };
|
};
|
||||||
# hints.enabled = {
|
hints.enabled = {
|
||||||
# hyperlinks = true;
|
hyperlinks = true;
|
||||||
# post_processing = true;
|
post_processing = true;
|
||||||
# };
|
};
|
||||||
font = {
|
font = {
|
||||||
normal = {
|
normal = {
|
||||||
family = "JetBrainsMono Nerd Font";
|
family = "JetBrainsMono Nerd Font";
|
||||||
|
|
|
@ -11,16 +11,11 @@ in
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
services.xserver.windowManager.dwm = {
|
services.xserver.windowManager.dwm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# package = pkgs.dwm.overrideAttrs (oldAttrs: {
|
package = pkgs.dwm.overrideAttrs (oldAttrs: {
|
||||||
# patches = [
|
patches = [
|
||||||
# ../home/dwm/config.def.h-6.4.diff
|
../home/dwm/config.def.h.diff
|
||||||
# ];
|
|
||||||
# });
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
dmenu
|
|
||||||
];
|
];
|
||||||
|
});
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue