refactor
This commit is contained in:
parent
1206380efd
commit
7203fc1ed9
51 changed files with 175 additions and 108 deletions
|
@ -1,14 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
{...}: {
|
||||
imports = [
|
||||
./git.nix
|
||||
./nvim.nix
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
lazygit
|
||||
];
|
||||
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
matchBlocks."viridian" = {
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
lazygit
|
||||
];
|
||||
|
||||
{...}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "jasmine";
|
||||
|
|
|
@ -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 = {
|
||||
|
|
31
home-manager/sajenim/features/desktop/dunst/default.nix
Normal file
31
home-manager/sajenim/features/desktop/dunst/default.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs.unstable; [
|
||||
home.packages = with pkgs; [
|
||||
wezterm
|
||||
];
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./mangohud.nix
|
||||
./mangohud
|
||||
];
|
||||
|
||||
home = {
|
||||
|
|
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue