Compare commits
No commits in common. "1c7bb6936110d3de4c8d5ac544d46e6b819af8c3" and "91b6dbb59fceaf379c1284f23ff705ff44f43a67" have entirely different histories.
1c7bb69361
...
91b6dbb59f
|
@ -92,12 +92,8 @@ in {
|
|||
|
||||
packages = with pkgs; [
|
||||
# Add your global packages here
|
||||
mpv
|
||||
sxiv
|
||||
feh
|
||||
duralumin
|
||||
duralumin-keygen
|
||||
ranger
|
||||
neovim
|
||||
bottom
|
||||
git
|
||||
|
|
|
@ -50,10 +50,9 @@
|
|||
identityFile = "~/.ssh/id_ed25519_nirgendwo";
|
||||
addKeysToAgent = "yes";
|
||||
};
|
||||
"github-janis-bhm" = {
|
||||
host = "github-janis-bhm";
|
||||
"github.com:janis-bhm" = {
|
||||
host = "github.com:janis-bhm";
|
||||
hostname = "github.com";
|
||||
user = "git";
|
||||
identityFile = "~/.ssh/duralumin_janis-github";
|
||||
addKeysToAgent = "yes";
|
||||
};
|
||||
|
|
|
@ -43,30 +43,29 @@
|
|||
valign = "center";
|
||||
};
|
||||
|
||||
label = [
|
||||
# DATE
|
||||
{
|
||||
monitor = "";
|
||||
text = ''cmd[update:1000] echo "''$(${pkgs.coreutils}/bin/date +"%A, %B %d")"'';
|
||||
color = "rgba(242, 243, 244, 0.75)";
|
||||
font_size = 22;
|
||||
font_family = "JetBrains Mono";
|
||||
position = "0, 300";
|
||||
halign = "center";
|
||||
valign = "center";
|
||||
}
|
||||
# TIME
|
||||
{
|
||||
monitor = "";
|
||||
text = ''cmd[update:1000] echo "''$(${pkgs.coreutils}/bin/date +"%-I:%M")"'';
|
||||
color = "rgba(242, 243, 244, 0.75)";
|
||||
font_size = 95;
|
||||
font_family = "JetBrains Mono Extrabold";
|
||||
position = "0, 200";
|
||||
halign = "center";
|
||||
valign = "center";
|
||||
}
|
||||
];
|
||||
# DATE
|
||||
label-date = {
|
||||
monitor = "";
|
||||
text = ''cmd[update:1000] echo "''$(${pkgs.coreutils}/bin/date +"%A, %B %d")"'';
|
||||
color = "rgba(242, 243, 244, 0.75)";
|
||||
font_size = 22;
|
||||
font_family = "JetBrains Mono";
|
||||
position = "0, 300";
|
||||
halign = "center";
|
||||
valign = "center";
|
||||
};
|
||||
|
||||
# TIME
|
||||
label-time = {
|
||||
monitor = "";
|
||||
text = ''cmd[update:1000] echo "''$(${pkgs.coreutils} +"%-I:%M")"'';
|
||||
color = "rgba(242, 243, 244, 0.75)";
|
||||
font_size = 95;
|
||||
font_family = "JetBrains Mono Extrabold";
|
||||
position = "0, 200";
|
||||
halign = "center";
|
||||
valign = "center";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{lib, pkgs, config, modulesPath, ...}: {
|
||||
{lib, config, modulesPath, ...}: {
|
||||
imports = [
|
||||
./disks.nix
|
||||
../../options.nix
|
||||
|
@ -14,39 +14,10 @@
|
|||
"HDMI-A-1" = { pos = "1920 0"; };
|
||||
};
|
||||
|
||||
boot = {
|
||||
|
||||
kernelParams = [
|
||||
"quiet"
|
||||
"splash"
|
||||
"boot.shell_on_fail"
|
||||
"udev.log_priority=3"
|
||||
"rd.systemd.show_status=auto"
|
||||
];
|
||||
|
||||
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
extraModulePackages = [ ];
|
||||
|
||||
consoleLogLevel = 3;
|
||||
initrd = {
|
||||
verbose = false;
|
||||
|
||||
kernelModules = ["amdgpu" ];
|
||||
availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ];
|
||||
};
|
||||
|
||||
plymouth = {
|
||||
enable = true;
|
||||
theme = "rings";
|
||||
themePackages = with pkgs; [
|
||||
(adi1090x-plymouth-themes.override {
|
||||
selected_themes = ["rings"];
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
};
|
||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
|
|
|
@ -25,11 +25,8 @@
|
|||
system.stateVersion = "25.05";
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
# timeout = 0;
|
||||
};
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
# kernelModules = [];
|
||||
kernelPackages = pkgs.linuxPackages_zen;
|
||||
|
|
Loading…
Reference in a new issue