mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-22 06:32:55 -05:00
homes: init aly@petalburg
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
323bf1bfde
commit
5a8eabb912
|
@ -125,12 +125,13 @@
|
||||||
|
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"aly@petalburg" = self.inputs.home-manager.lib.homeManagerConfiguration {
|
"aly@petalburg" = self.inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
|
extraSpecialArgs = {inherit self;};
|
||||||
pkgs = import self.inputs.nixpkgs {system = "x86_64-linux";};
|
pkgs = import self.inputs.nixpkgs {system = "x86_64-linux";};
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
self.inputs.stylix.homeManagerModules.stylix
|
self.homeManagerModules.aly-petalburg
|
||||||
self.homeManagerModules.default
|
self.homeManagerModules.default
|
||||||
./homes/aly/petalburg.nix
|
self.inputs.stylix.homeManagerModules.stylix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -138,6 +139,7 @@
|
||||||
homeManagerModules = {
|
homeManagerModules = {
|
||||||
default = import ./homeManagerModules self;
|
default = import ./homeManagerModules self;
|
||||||
aly = import ./homes/aly self;
|
aly = import ./homes/aly self;
|
||||||
|
aly-petalburg = import ./homes/aly/petalburg.nix self;
|
||||||
dustin = import ./homes/dustin self;
|
dustin = import ./homes/dustin self;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,88 @@
|
||||||
{...}: {
|
self: {
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "24.11";
|
homeDirectory = "/var/home/aly";
|
||||||
|
|
||||||
|
packages = with pkgs; [
|
||||||
|
fractal
|
||||||
|
vesktop
|
||||||
|
];
|
||||||
|
|
||||||
|
stateVersion = "25.05";
|
||||||
username = "aly";
|
username = "aly";
|
||||||
homeDirectory = "/var/home/aly/";
|
};
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
stylix = {
|
||||||
|
enable = true;
|
||||||
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||||
|
image = "${self.inputs.wallpapers}/wallhaven-yxdrex.png";
|
||||||
|
imageScalingMode = "fill";
|
||||||
|
polarity = "dark";
|
||||||
|
|
||||||
|
cursor = {
|
||||||
|
package = pkgs.kdePackages.breeze;
|
||||||
|
name = "breeze_cursors";
|
||||||
|
size = 24;
|
||||||
|
};
|
||||||
|
|
||||||
|
fonts = {
|
||||||
|
monospace = {
|
||||||
|
name = "CaskaydiaCove Nerd Font";
|
||||||
|
package = pkgs.nerd-fonts.caskaydia-cove;
|
||||||
|
};
|
||||||
|
|
||||||
|
sansSerif = {
|
||||||
|
name = "UbuntuSans Nerd Font";
|
||||||
|
package = pkgs.nerd-fonts.ubuntu-sans;
|
||||||
|
};
|
||||||
|
|
||||||
|
serif = {
|
||||||
|
name = "Source Serif Pro";
|
||||||
|
package = pkgs.source-serif-pro;
|
||||||
|
};
|
||||||
|
|
||||||
|
sizes = {
|
||||||
|
applications = 12;
|
||||||
|
desktop = 11;
|
||||||
|
popups = 12;
|
||||||
|
terminal = 13;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
opacity = {
|
||||||
|
applications = 1.0;
|
||||||
|
desktop = 0.8;
|
||||||
|
terminal = 0.8;
|
||||||
|
popups = 0.8;
|
||||||
|
};
|
||||||
|
|
||||||
|
targets.gtk.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
targets.genericLinux.enable = true;
|
||||||
|
|
||||||
|
xdg = {
|
||||||
|
enable = true;
|
||||||
|
mime.enable = true;
|
||||||
|
|
||||||
|
systemDirs = {
|
||||||
|
data = ["${config.home.homeDirectory}/.local/share/flatpak/exports/share"];
|
||||||
|
config = ["/etc/xdg"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
ar.home = {
|
ar.home = {
|
||||||
apps = {
|
apps = {
|
||||||
|
chromium.enable = true;
|
||||||
shell.enable = true;
|
shell.enable = true;
|
||||||
vsCodium.enable = true;
|
vsCodium.enable = true;
|
||||||
fastfetch.enable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
desktop.kde.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue