This commit is contained in:
♥ Minnie ♥ 2024-09-20 20:24:55 +08:00
parent 1206380efd
commit 7203fc1ed9
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
51 changed files with 175 additions and 108 deletions

View file

@ -1,14 +1,10 @@
{pkgs, ...}: {
{...}: {
imports = [
./git.nix
./nvim.nix
./zsh.nix
];
home.packages = with pkgs; [
lazygit
];
programs.ssh = {
enable = true;
matchBlocks."viridian" = {

View file

@ -1,8 +1,4 @@
{pkgs, ...}: {
home.packages = with pkgs; [
lazygit
];
{...}: {
programs.git = {
enable = true;
userName = "jasmine";

View file

@ -5,19 +5,19 @@
}: {
imports = [
./discord
./dunst
./email
./irc
./mpd
./picom
./rofi
./wezterm
./email.nix
./irc.nix
./mpd.nix
./picom.nix
];
home.packages = with pkgs; [
feh
xmobar
xmonad
xmobar # custom build using xmobar-config
xmonad # custom build using xmonad-config
];
home.file = {

View file

@ -0,0 +1,31 @@
{...}: {
services.dunst = {
enable = true;
settings = {
global = {
width = 300;
height = 300;
origin = "top-right";
offset = "20x20";
frame_width = 5;
frame_color = "#282828";
corner_radius = 10;
};
urgency_low = {
background = "#1d2021";
foreground = "#d4be98";
};
urgency_normal = {
background = "#1d2021";
foreground = "#d4be98";
};
urgency_critical = {
background = "#1d2021";
foreground = "#d4be98";
};
};
};
}

View file

@ -1,5 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs.unstable; [
home.packages = with pkgs; [
wezterm
];

View file

@ -6,6 +6,9 @@ xrandr --output HDMI-A-0 --mode 1920x1080 --output DisplayPort-0 --mode 2560x144
# Apply our wallpaper
feh --bg-center ~/.repositories/dotfiles.nix/assets/chinatown.png
# Start our notification daemon
dunst &
# Enable our compositor
picom -b

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
./mangohud.nix
./mangohud
];
home = {

View file

@ -1,11 +1,11 @@
{pkgs, ...}: {
home = {
packages = with pkgs; [
blender
freecad
kicad
openscad
unstable.prusa-slicer
unstable.blender
freecad # https://discourse.nixos.org/t/error-hash-mismatch-in-fixed-output-derivation/52353
unstable.kicad
unstable.openscad
prusa-slicer # Some error idk fix this later
];
};
}