Use alejandra for formatting Nix files
This commit is contained in:
parent
7db4788e49
commit
7302dae7ec
17 changed files with 273 additions and 244 deletions
|
@ -21,7 +21,7 @@
|
|||
glyph_offset.y = 6;
|
||||
};
|
||||
|
||||
shell = { program = "zsh"; };
|
||||
shell = {program = "zsh";};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{ username, ... }:
|
||||
|
||||
{
|
||||
{username, ...}: {
|
||||
services.autorandr.enable = true;
|
||||
|
||||
xdg.configFile."autorandr/postswitch" = {
|
||||
|
@ -15,33 +13,31 @@
|
|||
programs.autorandr = {
|
||||
enable = true;
|
||||
|
||||
profiles =
|
||||
let
|
||||
laptop = "00ffffffffffff000daef21400000000161c0104a51f117802ee95a3544c99260f505400000001010101010101010101010101010101363680a0703820402e1e240035ad10000018000000fe004e3134304843472d4751320a20000000fe00434d4e0a202020202020202020000000fe004e3134304843472d4751320a2000bb";
|
||||
monitor = "00ffffffffffff004c2d1710424e58432b1f0103803f24782ac8b5ad50449e250f5054bfef80714f810081c081809500a9c0b300010108e80030f2705a80b0588a0078682100001e000000fd00324b1e873c000a202020202020000000fc004c5532385235350a2020202020000000ff0048345a524130303132380a20200183020335f04961120313041f10605f2309070783010000e305c0006b030c002000b83c2000200167d85dc401788003e20f81e3060501023a801871382d40582c450078682100001e023a80d072382d40102c458078682100001e04740030f2705a80b0588a0078682100001e565e00a0a0a029503020350078682100001a000049";
|
||||
in
|
||||
{
|
||||
laptop = {
|
||||
config.eDP-1 = {
|
||||
enable = true;
|
||||
mode = "1920x1080";
|
||||
primary = true;
|
||||
rate = "59.95";
|
||||
};
|
||||
|
||||
fingerprint.eDP-1 = laptop;
|
||||
profiles = let
|
||||
laptop = "00ffffffffffff000daef21400000000161c0104a51f117802ee95a3544c99260f505400000001010101010101010101010101010101363680a0703820402e1e240035ad10000018000000fe004e3134304843472d4751320a20000000fe00434d4e0a202020202020202020000000fe004e3134304843472d4751320a2000bb";
|
||||
monitor = "00ffffffffffff004c2d1710424e58432b1f0103803f24782ac8b5ad50449e250f5054bfef80714f810081c081809500a9c0b300010108e80030f2705a80b0588a0078682100001e000000fd00324b1e873c000a202020202020000000fc004c5532385235350a2020202020000000ff0048345a524130303132380a20200183020335f04961120313041f10605f2309070783010000e305c0006b030c002000b83c2000200167d85dc401788003e20f81e3060501023a801871382d40582c450078682100001e023a80d072382d40102c458078682100001e04740030f2705a80b0588a0078682100001e565e00a0a0a029503020350078682100001a000049";
|
||||
in {
|
||||
laptop = {
|
||||
config.eDP-1 = {
|
||||
enable = true;
|
||||
mode = "1920x1080";
|
||||
primary = true;
|
||||
rate = "59.95";
|
||||
};
|
||||
|
||||
desktop = {
|
||||
config.HDMI-1 = {
|
||||
enable = true;
|
||||
mode = "2560x1440";
|
||||
primary = true;
|
||||
rate = "59.95";
|
||||
};
|
||||
|
||||
fingerprint.HDMI-1 = monitor;
|
||||
};
|
||||
fingerprint.eDP-1 = laptop;
|
||||
};
|
||||
|
||||
desktop = {
|
||||
config.HDMI-1 = {
|
||||
enable = true;
|
||||
mode = "2560x1440";
|
||||
primary = true;
|
||||
rate = "59.95";
|
||||
};
|
||||
|
||||
fingerprint.HDMI-1 = monitor;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
let
|
||||
baseUrl = "https://www.oliverdavies.uk";
|
||||
in
|
||||
{
|
||||
in {
|
||||
services.espanso = {
|
||||
enable = true;
|
||||
|
||||
|
|
|
@ -1,19 +1,23 @@
|
|||
{ config, inputs, self, username, pkgs, ... }:
|
||||
|
||||
let
|
||||
modifier = "Mod4";
|
||||
in
|
||||
{
|
||||
config,
|
||||
inputs,
|
||||
self,
|
||||
username,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
modifier = "Mod4";
|
||||
in {
|
||||
xsession.windowManager.i3 = {
|
||||
enable = true;
|
||||
|
||||
config = {
|
||||
assigns = {
|
||||
"7" = [{ class = "vlc"; }];
|
||||
"8" = [{ class = "0ad"; }];
|
||||
"7" = [{class = "vlc";}];
|
||||
"8" = [{class = "0ad";}];
|
||||
"9" = [
|
||||
{ class = "Slack"; }
|
||||
{ class = "discord"; }
|
||||
{class = "Slack";}
|
||||
{class = "discord";}
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -81,47 +85,49 @@ in
|
|||
'';
|
||||
|
||||
config = {
|
||||
bars = [{
|
||||
position = "bottom";
|
||||
statusCommand = "${pkgs.i3status}/bin/i3status";
|
||||
colors = {
|
||||
background = "#161616";
|
||||
statusline = "#ffffff";
|
||||
separator = "#333333";
|
||||
bars = [
|
||||
{
|
||||
position = "bottom";
|
||||
statusCommand = "${pkgs.i3status}/bin/i3status";
|
||||
colors = {
|
||||
background = "#161616";
|
||||
statusline = "#ffffff";
|
||||
separator = "#333333";
|
||||
|
||||
focusedWorkspace = {
|
||||
background = "#444444";
|
||||
border = "#555555";
|
||||
text = "#ffffff";
|
||||
focusedWorkspace = {
|
||||
background = "#444444";
|
||||
border = "#555555";
|
||||
text = "#ffffff";
|
||||
};
|
||||
|
||||
activeWorkspace = {
|
||||
background = "#555555";
|
||||
border = "#666666";
|
||||
text = "#ffffff";
|
||||
};
|
||||
|
||||
inactiveWorkspace = {
|
||||
background = "#111111";
|
||||
border = "#000000";
|
||||
text = "#888888";
|
||||
};
|
||||
|
||||
bindingMode = {
|
||||
background = "#ff0000";
|
||||
border = "#880000";
|
||||
text = "#ffffff";
|
||||
};
|
||||
|
||||
urgentWorkspace = {
|
||||
background = "#ff0000";
|
||||
border = "#880000";
|
||||
text = "#ffffff";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
activeWorkspace = {
|
||||
background = "#555555";
|
||||
border = "#666666";
|
||||
text = "#ffffff";
|
||||
};
|
||||
|
||||
inactiveWorkspace = {
|
||||
background = "#111111";
|
||||
border = "#000000";
|
||||
text = "#888888";
|
||||
};
|
||||
|
||||
bindingMode = {
|
||||
background = "#ff0000";
|
||||
border = "#880000";
|
||||
text = "#ffffff";
|
||||
};
|
||||
|
||||
urgentWorkspace = {
|
||||
background = "#ff0000";
|
||||
border = "#880000";
|
||||
text = "#ffffff";
|
||||
};
|
||||
};
|
||||
}];
|
||||
|
||||
fonts.names = [ "GeistMono" ];
|
||||
fonts.names = ["GeistMono"];
|
||||
|
||||
gaps = {
|
||||
smartBorders = "on";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue