feat: some randome meme clis and planner
This commit is contained in:
parent
8c19dd84bb
commit
721317da4c
|
@ -1,12 +1,27 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
home-manager.users.adrielus.home.packages = with pkgs; [
|
home-manager.users.adrielus.home.packages = with pkgs; [
|
||||||
tree
|
# cmd stuff
|
||||||
mkpasswd
|
tree # print a file structure
|
||||||
|
exa # ls replacement
|
||||||
|
mkpasswd # hash passwords
|
||||||
gnupg
|
gnupg
|
||||||
|
|
||||||
|
# editors
|
||||||
vscodium
|
vscodium
|
||||||
google-chrome
|
|
||||||
|
# chat apps
|
||||||
discord
|
discord
|
||||||
slack
|
slack
|
||||||
spectacle
|
|
||||||
|
# gui studf
|
||||||
|
google-chrome
|
||||||
|
spectacle # take screenshots
|
||||||
|
unstable.elementary-planner # project planner
|
||||||
|
|
||||||
|
# for the memes
|
||||||
|
fortune
|
||||||
|
cowsay
|
||||||
|
lolcat
|
||||||
|
figlet
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,9 +5,4 @@ let
|
||||||
GITHUB_USERNAME = "Mateiadrielrafael";
|
GITHUB_USERNAME = "Mateiadrielrafael";
|
||||||
inherit GITHUB_TOKEN;
|
inherit GITHUB_TOKEN;
|
||||||
};
|
};
|
||||||
in {
|
in { home-manager.users.adrielus = { home.sessionVariables = variables; }; }
|
||||||
home-manager.users.adrielus = {
|
|
||||||
home.sessionVariables = variables;
|
|
||||||
# programs.zsh.sessionVariables = variables;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,12 +1,17 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
let imports = import ../nix/sources.nix;
|
let
|
||||||
|
imports = import ../nix/sources.nix;
|
||||||
|
unstable = import imports.nixpkgs-unstable { config.allowUnfree = true; };
|
||||||
in {
|
in {
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(self: super:
|
(self: super:
|
||||||
with self; rec {
|
with self; rec {
|
||||||
inherit imports;
|
inherit imports;
|
||||||
|
inherit unstable;
|
||||||
|
|
||||||
cached-nix-shell = callPackage imports.cached-nix-shell { };
|
cached-nix-shell = callPackage imports.cached-nix-shell { };
|
||||||
easy-purescript-nix = callPackage imports.easy-purescript-nix { };
|
easy-purescript-nix = callPackage imports.easy-purescript-nix { };
|
||||||
|
|
||||||
inherit (import imports.niv { }) niv;
|
inherit (import imports.niv { }) niv;
|
||||||
inherit (import imports.all-hies { }) all-hies;
|
inherit (import imports.all-hies { }) all-hies;
|
||||||
})
|
})
|
||||||
|
|
|
@ -82,5 +82,17 @@
|
||||||
"type": "tarball",
|
"type": "tarball",
|
||||||
"url": "https://github.com/NixOS/nixpkgs-channels/archive/e10c65cdb35b6a66491e47e5a85f5d456b4f4eea.tar.gz",
|
"url": "https://github.com/NixOS/nixpkgs-channels/archive/e10c65cdb35b6a66491e47e5a85f5d456b4f4eea.tar.gz",
|
||||||
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
|
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
|
||||||
|
},
|
||||||
|
"nixpkgs-unstable": {
|
||||||
|
"branch": "nixos-unstable",
|
||||||
|
"description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to",
|
||||||
|
"homepage": "https://github.com/NixOS/nixpkgs",
|
||||||
|
"owner": "nixos",
|
||||||
|
"repo": "nixpkgs-channels",
|
||||||
|
"rev": "9b0d2f3fd153167b0c8ce84bb71e766a39ed4c9d",
|
||||||
|
"sha256": "0yyr83zdaa04v8dsla28pk0nqnihxzkgfr8j0m3prgj2w4gd9ajz",
|
||||||
|
"type": "tarball",
|
||||||
|
"url": "https://github.com/nixos/nixpkgs-channels/archive/9b0d2f3fd153167b0c8ce84bb71e766a39ed4c9d.tar.gz",
|
||||||
|
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue