Compare commits
4 commits
d6b876860e
...
f48485cf90
Author | SHA1 | Date | |
---|---|---|---|
f48485cf90 | |||
5cf26ebf11 | |||
6448b16751 | |||
92f360e2bb |
59 changed files with 115 additions and 3 deletions
20
flake.nix
20
flake.nix
|
@ -2,6 +2,18 @@
|
||||||
description = "marleyOS";
|
description = "marleyOS";
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
inputs:
|
||||||
|
inputs.snowfall-lib.mkFlake {
|
||||||
|
inherit inputs;
|
||||||
|
src = ./.;
|
||||||
|
|
||||||
|
snowfall = {
|
||||||
|
namespace = "marleyos";
|
||||||
|
title = "marleyOS";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
old =
|
||||||
{ self, ... }@inputs:
|
{ self, ... }@inputs:
|
||||||
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
debug = true;
|
debug = true;
|
||||||
|
@ -64,11 +76,13 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
||||||
nixos-unified.url = "github:srid/nixos-unified";
|
|
||||||
|
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
|
||||||
|
snowfall-lib = {
|
||||||
|
url = "github:snowfallorg/lib";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "github:nix-community/home-manager";
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
4
homes/x86_64-linux/marley@nyx/default.nix
Normal file
4
homes/x86_64-linux/marley@nyx/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
home.stateVersion = "24.05";
|
||||||
|
}
|
51
lib/module/default.nix
Normal file
51
lib/module/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
with lib;
|
||||||
|
rec {
|
||||||
|
## Create a NixOS module option.
|
||||||
|
##
|
||||||
|
## ```nix
|
||||||
|
## lib.mkOpt nixpkgs.lib.types.str "My default" "Description of my option."
|
||||||
|
## ```
|
||||||
|
##
|
||||||
|
#@ Type -> Any -> String
|
||||||
|
mkOpt =
|
||||||
|
type: default: description:
|
||||||
|
mkOption {
|
||||||
|
inherit
|
||||||
|
type
|
||||||
|
default
|
||||||
|
description
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
|
## Create a boolean NixOS module option.
|
||||||
|
##
|
||||||
|
## ```nix
|
||||||
|
## lib.mkBoolOpt true "Description of my option."
|
||||||
|
## ```
|
||||||
|
##
|
||||||
|
#@ Type -> Any -> String
|
||||||
|
mkBoolOpt = mkOpt types.bool;
|
||||||
|
|
||||||
|
enabled = {
|
||||||
|
## Quickly enable an option.
|
||||||
|
##
|
||||||
|
## ```nix
|
||||||
|
## services.nginx = enabled;
|
||||||
|
## ```
|
||||||
|
##
|
||||||
|
#@ true
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = {
|
||||||
|
## Quickly disable an option.
|
||||||
|
##
|
||||||
|
## ```nix
|
||||||
|
## services.nginx = enabled;
|
||||||
|
## ```
|
||||||
|
##
|
||||||
|
#@ false
|
||||||
|
enable = false;
|
||||||
|
};
|
||||||
|
}
|
4
modules/home/me/default.nix
Normal file
4
modules/home/me/default.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ namespace, lib, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -3,5 +3,7 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
nixfmt-rfc-style
|
nixfmt-rfc-style
|
||||||
nil
|
nil
|
||||||
|
statix
|
||||||
|
manix
|
||||||
];
|
];
|
||||||
}
|
}
|
36
old/home/programs/cheat.nix
Normal file
36
old/home/programs/cheat.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ pkgs, config, ... }:
|
||||||
|
let
|
||||||
|
toYaml = (pkgs.formats.yaml { }).generate;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
cheat
|
||||||
|
];
|
||||||
|
|
||||||
|
xdg.configFile."cheat/conf.yml".source = toYaml "conf.yml" {
|
||||||
|
colorize = true;
|
||||||
|
# TODO set based on global color scheme
|
||||||
|
style = "rose-pine";
|
||||||
|
formatter = "terminal256";
|
||||||
|
pager = "less -FRX";
|
||||||
|
|
||||||
|
cheatpaths =
|
||||||
|
let
|
||||||
|
cheatDir = "${config.xdg.configHome}/cheat/cheatsheets";
|
||||||
|
in
|
||||||
|
[
|
||||||
|
{
|
||||||
|
name = "community";
|
||||||
|
path = "${cheatDir}/community";
|
||||||
|
tags = [ "community" ];
|
||||||
|
readonly = true;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "personal";
|
||||||
|
path = "${cheatDir}/personal";
|
||||||
|
tags = [ "personal" ];
|
||||||
|
readonly = false;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5,6 +5,7 @@
|
||||||
./bat.nix
|
./bat.nix
|
||||||
./btop.nix
|
./btop.nix
|
||||||
./cava.nix
|
./cava.nix
|
||||||
|
./cheat.nix
|
||||||
./curl.nix
|
./curl.nix
|
||||||
./eza.nix
|
./eza.nix
|
||||||
./figlet.nix
|
./figlet.nix
|
Loading…
Reference in a new issue