Move firefox into module and clean useless folder
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
{ ... }:
|
||||
{
|
||||
home.file = {
|
||||
".config/ghostty/" = {
|
||||
source = ./ghostty;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
# macOS specific
|
||||
macos-titlebar-style = "tabs"
|
||||
|
||||
# Window padding & size
|
||||
window-padding-x = 8
|
||||
window-padding-y = 0,2
|
||||
window-height = 25
|
||||
window-width = 100
|
||||
|
||||
# Themes
|
||||
background-blur=true
|
||||
background-opacity = 0.85
|
||||
theme = Spacegray Eighties
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.2 MiB |
@@ -1,19 +0,0 @@
|
||||
{
|
||||
config,
|
||||
...
|
||||
}:
|
||||
let
|
||||
wallpaperPath = "${config.home.homeDirectory}/.config/wallpaper/current-wallpaper.jpg";
|
||||
in
|
||||
{
|
||||
# Create wallpaper directory and download wallpaper
|
||||
home.file.".config/wallpaper/current-wallpaper.jpg" = {
|
||||
source = ./walls.jpg;
|
||||
};
|
||||
|
||||
# Set wallpaper using activation script
|
||||
home.activation.setWallpaper = config.lib.dag.entryAfter [ "writeBoundary" ] ''
|
||||
# Set wallpaper for all desktops using osascript
|
||||
$DRY_RUN_CMD /usr/bin/osascript -e "tell application \"System Events\" to tell every desktop to set picture to \"${wallpaperPath}\""
|
||||
'';
|
||||
}
|
||||
@@ -27,16 +27,14 @@
|
||||
|
||||
# Nix & languages env deps
|
||||
home.env.nix.enable = true;
|
||||
home.env.jdk.enable = true;
|
||||
home.env.rust.enable = true;
|
||||
home.env.python.enable = true;
|
||||
|
||||
home.packages = [ ];
|
||||
|
||||
# No Home Application Folders
|
||||
targets.darwin.linkApps.enable = false;
|
||||
targets.darwin.copyApps.enable = false;
|
||||
|
||||
# Home packages
|
||||
home.packages = [ ];
|
||||
|
||||
# The state version is required and should stay at the version you
|
||||
# originally installed.
|
||||
home.stateVersion = "25.11";
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
{ ... }:
|
||||
{
|
||||
system.primaryUser = "alistreaza";
|
||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||
|
||||
# Homebrew apps
|
||||
os.homebrew.ghostty.enable = true;
|
||||
@@ -12,4 +11,6 @@
|
||||
os.homebrew.obsidian.enable = true;
|
||||
os.homebrew.microsoft.enable = true;
|
||||
os.homebrew.keka.enable = true;
|
||||
|
||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user