meow
This commit is contained in:
parent
9deeeaabce
commit
4348bef5ac
4 changed files with 37 additions and 2 deletions
15
flake.nix
15
flake.nix
|
|
@ -31,6 +31,10 @@
|
||||||
url = "github:nix-community/stylix";
|
url = "github:nix-community/stylix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
firefox-addons = {
|
||||||
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
|
@ -83,6 +87,16 @@
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
packages.${system}.wallpaper = pkgs.stdenv.mkDerivation {
|
||||||
|
name = "wallpaper";
|
||||||
|
src = ./assets/wp6553608.jpg;
|
||||||
|
dontUnpack = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out
|
||||||
|
cp $src $out/wallpaper.jpg
|
||||||
|
'';
|
||||||
|
};
|
||||||
nixosConfigurations.p50 = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.p50 = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
@ -95,6 +109,7 @@
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.backupFileExtension = "backup";
|
||||||
home-manager.users.lucy =
|
home-manager.users.lucy =
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
*/
|
*/
|
||||||
font = {
|
font = {
|
||||||
normal = {
|
normal = {
|
||||||
family = lib.mkDefault "Iosevka";
|
family = lib.mkForce "Iosevka";
|
||||||
style = "Regular";
|
style = "Regular";
|
||||||
};
|
};
|
||||||
bold = {
|
bold = {
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@
|
||||||
./gammastep.nix
|
./gammastep.nix
|
||||||
./hypridle.nix
|
./hypridle.nix
|
||||||
./fuzzel.nix
|
./fuzzel.nix
|
||||||
|
./hyfetch.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO please change the username & home directory to your own
|
# TODO please change the username & home directory to your own
|
||||||
|
|
@ -53,7 +54,6 @@
|
||||||
|
|
||||||
aerc
|
aerc
|
||||||
|
|
||||||
hyfetch
|
|
||||||
nnn # terminal file manager
|
nnn # terminal file manager
|
||||||
|
|
||||||
prismlauncher
|
prismlauncher
|
||||||
|
|
|
||||||
20
modules/hyfetch.nix
Normal file
20
modules/hyfetch.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.hyfetch = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
preset = "transgender";
|
||||||
|
mode = "rgb";
|
||||||
|
auto_detect_light_dark = true;
|
||||||
|
light_dark = "dark";
|
||||||
|
lightness = 0.65;
|
||||||
|
color_align = {
|
||||||
|
mode = "horizontal";
|
||||||
|
};
|
||||||
|
backend = "neofetch";
|
||||||
|
args = null;
|
||||||
|
distro = null;
|
||||||
|
pride_month_disable = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue