format everything
This commit is contained in:
parent
9c28397d38
commit
b54f3d54f1
37 changed files with 1185 additions and 1173 deletions
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ];
|
||||
|
|
@ -14,17 +15,20 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/263716dd-52cb-4a91-ba0b-e39e492ed0e5";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/263716dd-52cb-4a91-ba0b-e39e492ed0e5";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/B08E-916D";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/B08E-916D";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/home/noa/Sync" =
|
||||
{ device = "/dev/disk/by-uuid/93a74173-8719-4be2-86b3-dc80588b9cf8";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/93a74173-8719-4be2-86b3-dc80588b9cf8";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
name = name;
|
||||
size = 32;
|
||||
package =
|
||||
pkgs.runCommand "moveUp" {} ''
|
||||
pkgs.runCommand "moveUp" { } ''
|
||||
mkdir -p $out/share/icons
|
||||
ln -s ${pkgs.fetchzip {
|
||||
url = url;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
[
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
./disk-config.nix
|
||||
|
|
@ -33,9 +34,9 @@
|
|||
settings = {
|
||||
# auto optimise every so often
|
||||
auto-optimise-store = true;
|
||||
experimental-features = ["nix-command" "flakes"];
|
||||
substituters = ["https://hyprland.cachix.org"];
|
||||
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
substituters = [ "https://hyprland.cachix.org" ];
|
||||
trusted-public-keys = [ "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ];
|
||||
};
|
||||
gc.automatic = false;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
[
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" ];
|
||||
|
|
|
|||
|
|
@ -10,12 +10,12 @@ in
|
|||
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.direnv = {
|
||||
enable=true;
|
||||
enableZshIntegration=true;
|
||||
nix-direnv.enable=true;
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
programs.zsh = {
|
||||
enable=true;
|
||||
enable = true;
|
||||
shellAliases = lib.mkIf cfg.enableAliases {
|
||||
ll = "lsd -l";
|
||||
lt = "lsd -l --tree";
|
||||
|
|
|
|||
|
|
@ -49,7 +49,8 @@ in
|
|||
|
||||
config = lib.mkIf cfg.enable (
|
||||
let
|
||||
displays = lib.attrsets.mapAttrs (displayName: displayConfig:
|
||||
displays = lib.attrsets.mapAttrs
|
||||
(displayName: displayConfig:
|
||||
let
|
||||
init = builtins.toFile "init.frag" displayConfig.init;
|
||||
state = builtins.toFile "state.frag" displayConfig.state;
|
||||
|
|
@ -67,8 +68,10 @@ in
|
|||
cycles=${builtins.toString displayConfig.cycles}
|
||||
frames_per_tick=${builtins.toString displayConfig.frames_per_tick}
|
||||
''
|
||||
) cfg.configurations;
|
||||
in {
|
||||
)
|
||||
cfg.configurations;
|
||||
in
|
||||
{
|
||||
modules.automapaper.configurations =
|
||||
let
|
||||
conf = {
|
||||
|
|
@ -98,7 +101,7 @@ in
|
|||
|
||||
stateColor = vec4(step(0.3, color), 0,0,step(0.3, color));
|
||||
}'';
|
||||
state= ''
|
||||
state = ''
|
||||
#version 310 es
|
||||
precision highp float;
|
||||
|
||||
|
|
@ -173,12 +176,14 @@ in
|
|||
"DP-2" = conf;
|
||||
};
|
||||
wayland.windowManager.hyprland.settings.exec-once = lib.mkIf cfg.hyprland (
|
||||
lib.mapAttrsToList (name: config:
|
||||
lib.mapAttrsToList
|
||||
(name: config:
|
||||
"${
|
||||
inputs.automapaper.packages.${pkgs.system}.default
|
||||
}/bin/automapaper -C ${
|
||||
builtins.toFile "${name}.toml" config
|
||||
}") displays
|
||||
}")
|
||||
displays
|
||||
);
|
||||
}
|
||||
);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ in
|
|||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = [
|
||||
(pkgs.prismlauncher.override{withWaylandGLFW=true;})
|
||||
(pkgs.prismlauncher.override { withWaylandGLFW = true; })
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -83,8 +83,8 @@ in
|
|||
gaps_in = "2";
|
||||
gaps_out = "3";
|
||||
border_size = "3";
|
||||
"col.active_border"="0xff950fad";
|
||||
"col.inactive_border"="0xff26052e";
|
||||
"col.active_border" = "0xff950fad";
|
||||
"col.inactive_border" = "0xff26052e";
|
||||
};
|
||||
misc = {
|
||||
key_press_enables_dpms = true;
|
||||
|
|
@ -136,10 +136,13 @@ in
|
|||
",XF86AudioNext,exec,${pkgs.playerctl}/bin/playerctl next"
|
||||
]
|
||||
++ (
|
||||
builtins.concatLists (builtins.genList (
|
||||
x: let
|
||||
builtins.concatLists (builtins.genList
|
||||
(
|
||||
x:
|
||||
let
|
||||
ws = builtins.toString (x);
|
||||
in [
|
||||
in
|
||||
[
|
||||
"$mod,${ws},workspace,${ws}"
|
||||
"ALT,${ws},movetoworkspace,${ws}"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
config:
|
||||
[ "hyprland/workspaces" "tray" "hyprland/window" ] ++
|
||||
[ "clock" ] ++
|
||||
[ "custom/vpn" "wireplumber" "network" "cpu" "memory" "custom/poweroff" ]
|
||||
[ "hyprland/workspaces" "tray" "hyprland/window" ] ++
|
||||
[ "clock" ] ++
|
||||
[ "custom/vpn" "wireplumber" "network" "cpu" "memory" "custom/poweroff" ]
|
||||
|
|
|
|||
|
|
@ -12,15 +12,15 @@ in
|
|||
modules = {
|
||||
left = lib.mkOption {
|
||||
type = with lib.types; listOf (enum [ ]);
|
||||
default = [];
|
||||
default = [ ];
|
||||
};
|
||||
center = lib.mkOption {
|
||||
type = with lib.types; listOf (enum [ ]);
|
||||
default = [];
|
||||
default = [ ];
|
||||
};
|
||||
right = lib.mkOption {
|
||||
type = with lib.types; listOf (enum [ ]);
|
||||
default = [];
|
||||
default = [ ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
config:
|
||||
builtins.map
|
||||
(n: {name = n; value = {enable = true;}; })
|
||||
builtins.map
|
||||
(n: { name = n; value = { enable = true; }; })
|
||||
(import ./allmodules.nix config)
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ in
|
|||
hwmon-path = "/sys/class/hwmon/hwmon3/temp1_input";
|
||||
critical-threshold = 80;
|
||||
format = "{temperatureC}°C {icon}";
|
||||
format-icons = ["" "" ""];
|
||||
format-icons = [ "" "" "" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ in
|
|||
format = "{volume}% {icon}";
|
||||
format-muted = "";
|
||||
on-click = "helvum";
|
||||
format-icons = ["" "" ""];
|
||||
format-icons = [ "" "" "" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -45,9 +45,7 @@ in
|
|||
];
|
||||
programs.wofi = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
||||
};
|
||||
settings = { };
|
||||
style = ''
|
||||
* {
|
||||
outline: none;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue