meow
This commit is contained in:
parent
7dd32c7a17
commit
1a4ef774e4
13 changed files with 26 additions and 140 deletions
|
|
@ -1,6 +1,4 @@
|
|||
{ ... }:
|
||||
let
|
||||
in
|
||||
{
|
||||
programs.firefox = {
|
||||
policies.ExtensionSettings = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ ... }:
|
||||
|
||||
{
|
||||
programs.firefox = {
|
||||
|
|
|
|||
|
|
@ -1,15 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
# Fetch the JSON file and read its content
|
||||
fontsJson = builtins.fetchurl {
|
||||
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/nixos-unstable/pkgs/data/fonts/nerd-fonts/manifests/fonts.json";
|
||||
sha256 = "1kdmk4ayckixxckxbik9jg4fdqqgm7s5x1lvzd95v1g09bhn33wg";
|
||||
};
|
||||
|
||||
# Parse the JSON and extract package names
|
||||
fonts = builtins.fromJSON (builtins.readFile fontsJson);
|
||||
packageNames = map (font: font.package) fonts;
|
||||
in
|
||||
{
|
||||
fonts.packages = with pkgs; [
|
||||
iosevka
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
{ config
|
||||
, pkgs
|
||||
, inputs
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
programs.hyfetch = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ let
|
|||
close-window
|
||||
maximize-column
|
||||
screenshot-window
|
||||
screenshot
|
||||
focus-column-left
|
||||
focus-column-right
|
||||
focus-workspace-up
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, pkgs, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./settings.nix
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
{ lib
|
||||
, pkgs
|
||||
, inputs
|
||||
, ...
|
||||
}:
|
||||
let
|
||||
makeCommand = command: {
|
||||
|
|
@ -12,10 +10,6 @@ let
|
|||
qs = "${pkgs.quickshell}/bin/qs";
|
||||
wl-paste = "${pkgs.wl-clipboard}/bin/wl-paste";
|
||||
wallpapers = inputs.self.packages.${pkgs.system}.wallpapers;
|
||||
helloKittyCursor = pkgs.fetchzip {
|
||||
url = "https://www.rw-designer.com/cursor-downloadset/hello-kitty.zip";
|
||||
hash = "";
|
||||
};
|
||||
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
{ config
|
||||
, pkgs
|
||||
, lib
|
||||
, ...
|
||||
{ ...
|
||||
}:
|
||||
|
||||
let
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
{ config
|
||||
, pkgs
|
||||
, lib
|
||||
{ pkgs
|
||||
, inputs
|
||||
, ...
|
||||
}:
|
||||
|
||||
let
|
||||
wallpapers = inputs.self.packages.${pkgs.system}.wallpapers;
|
||||
in
|
||||
{
|
||||
programs.mpvpaper = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue