This commit is contained in:
Asdam9
2026-07-21 17:50:47 +02:00
parent b352f5f926
commit 08c2f0eaba
5 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
{
flake.nixosModules.devenv = {pkgs, ...}: {
environment.systemPackages = [
pkgs.devenv
];
};
}

View File

@@ -17,8 +17,10 @@
#set drawbox true
#set icons true
set ignorecase true
set scrolloff 10
set cursorpreviewfmt "\033[7;2m"
cmd stripspace %stripscpase "$f"
cmd stripspace %stripscpase "$f"
map "\""
map o
@@ -37,8 +39,8 @@
map r reload
map C clear
map U unselect
map do drag-out
map g~ cd
map gh cd
map g/ /

View File

@@ -71,6 +71,13 @@
default-column-width = { proportion = 1.; };
opacity = 1.;
}
{
matches = [
{ app-id = "zathura"; }
{ app-id = "mpv"; }
];
opacity = 1.;
}
{
matches = [ { app-id = "Alacritty"; } ];
excludes = [ { is-focused = false; } ];

View File

@@ -5,12 +5,14 @@
self.nixosModules.base
self.nixosModules.laptopHardware
self.nixosModules.visualProfile
self.nixosModules.developmentProfile
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
fonts.packages = with pkgs; [
nerd-fonts.bitstream-vera-sans-mono
montserrat
];
# BIOS
@@ -83,6 +85,11 @@
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
zathura
zip
unzip
faugus-launcher
texliveFull
mpv
#self.packages.${pkgs.system}.lf
];

View File

@@ -28,5 +28,11 @@
];
};
flake.nixosModules.developmentProfile = { pkgs, ... }: {
imports = [
self.nixosModules.devenv
];
};
#flake.nixosModules.INSERTNAMEHERE = { pkgs, ... }: {};
}