This commit is contained in:
@@ -18,11 +18,6 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/fastfetch" = {
|
|
||||||
source = builtins.toPath ../../dotfiles/fastfetch;
|
|
||||||
recursive = true;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
"wallpaper" = {
|
"wallpaper" = {
|
||||||
source = builtins.toPath ../../wallpapers;
|
source = builtins.toPath ../../wallpapers;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./fastfetch.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{ lib, smayzy, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
config = mkIf smayzy.base-cli-pkgs.enable {
|
||||||
|
home.file = {
|
||||||
|
".config/fastfetch" = {
|
||||||
|
source = builtins.toPath ./fastfetch;
|
||||||
|
recursive = true;
|
||||||
|
force = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
@@ -1,6 +1,7 @@
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./cli
|
||||||
./lf
|
./lf
|
||||||
./notif
|
./notif
|
||||||
./terminal
|
./terminal
|
||||||
|
|||||||
Reference in New Issue
Block a user