Compare commits

...

3 commits

Author SHA1 Message Date
c94d03b2b9
use latest kernel, enable hardware 2025-01-21 03:03:03 +00:00
4542adf054
fix waybar css 2025-01-21 03:02:49 +00:00
c8f2cbf62b
git commit info and gpg signing 2025-01-21 03:02:26 +00:00
4 changed files with 11 additions and 4 deletions
hosts
modules

View file

@ -16,6 +16,10 @@ inputs.nixpkgs.lib.nixosSystem {
scale = 1.25;
};
# hardware
hardware.graphics.enable = true;
hardware.bluetooth.enable = true;
# bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;

View file

@ -6,8 +6,8 @@
home-manager.users.${config.user} = {
programs.git = {
enable = true;
userName = config.user;
userEmail = config.fullName;
userName = config.fullName;
userEmail = config.email;
signing = {
key = "D9AF0A4209B7C2DE11A884BFACBC553660D9993D";

View file

@ -111,7 +111,7 @@ window#waybar > box {
.modules-right {
padding: ${innerGap} 0px;
border-radius: ${outerRadius};
background-color: @base;
background-color: ${baseColor};
border: ${borderWidth} solid ${accentColor};
}
@ -170,7 +170,7 @@ window#waybar:not(.empty) #window {
#clock {
padding: 0 ${outerGap};
border-right: ${borderWidth} solid ${surfaceColor};
color: @text;
color: ${textColor};
}
/** Battery */

View file

@ -25,6 +25,9 @@
wget
];
# use the latest kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
# timezone
time.timeZone = "Americia/New_York";