Compare commits
3 commits
b9d005821b
...
211f7d40aa
Author | SHA1 | Date | |
---|---|---|---|
211f7d40aa | |||
dc50185e3f | |||
53871bf139 |
5 changed files with 25 additions and 16 deletions
13
flake.nix
13
flake.nix
|
@ -9,11 +9,10 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
# nixgl.url = "github:nix-community/nixGL";
|
rose-pine.url = "git+https://codewith.babesonthe.net/punkfairie/rose-pine-nix";
|
||||||
|
|
||||||
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
|
||||||
|
|
||||||
# Rose pine themes that aren't included in the above flake:
|
# Rose pine themes that aren't included in the above flake:
|
||||||
|
# TODO: Integrate these to punkfairie/rose-pine-nix.
|
||||||
rose-pine-amfora = {
|
rose-pine-amfora = {
|
||||||
url = "github:rose-pine/amfora";
|
url = "github:rose-pine/amfora";
|
||||||
flake = false;
|
flake = false;
|
||||||
|
@ -39,11 +38,9 @@
|
||||||
home-manager.lib.homeManagerConfiguration {
|
home-manager.lib.homeManagerConfiguration {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
extraSpecialArgs = # with inputs;
|
extraSpecialArgs = {
|
||||||
{
|
inherit inputs;
|
||||||
# inherit nixgl;
|
};
|
||||||
inherit inputs;
|
|
||||||
};
|
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
inputs.rose-pine.homeManagerModules.rose-pine
|
inputs.rose-pine.homeManagerModules.rose-pine
|
||||||
|
|
|
@ -9,11 +9,6 @@
|
||||||
|
|
||||||
targets.genericLinux.enable = true;
|
targets.genericLinux.enable = true;
|
||||||
|
|
||||||
# GPU integration.
|
|
||||||
# nixGL.packages = nixgl.packages;
|
|
||||||
# nixGL.defaultWrapper = "nvidia";
|
|
||||||
# nixGL.installScripts = [ "nvidia" ];
|
|
||||||
|
|
||||||
home.language.base = "en_US.UTF-8";
|
home.language.base = "en_US.UTF-8";
|
||||||
|
|
||||||
# Tell nix what version it is.
|
# Tell nix what version it is.
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./gh.nix
|
./gh.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
|
./gpg.nix
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
./just.nix
|
./just.nix
|
||||||
./lazygit.nix
|
./lazygit.nix
|
||||||
|
|
17
home/programs/gpg.nix
Normal file
17
home/programs/gpg.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.gpg = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
services.gpg-agent = rec {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
# TODO: Set this to pinentry-curses on non-GUI systems.
|
||||||
|
pinentryPackage = pkgs.pinentry-gtk2;
|
||||||
|
|
||||||
|
# Don't ask for the password very often.
|
||||||
|
defaultCacheTtl = 60480000;
|
||||||
|
maxCacheTtl = defaultCacheTtl;
|
||||||
|
};
|
||||||
|
}
|
|
@ -3,9 +3,8 @@
|
||||||
programs.wezterm = {
|
programs.wezterm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
# Needs to be wrapped with GPU driver libraries on non-NixOS systems.
|
# Non-NixOS Linux systems don't have proper GPU integration, so we
|
||||||
# package = (config.lib.nixGL.wrap pkgs.wezterm);
|
# unfortunately need to use the native package manager version.
|
||||||
|
|
||||||
package = pkgs.emptyDirectory;
|
package = pkgs.emptyDirectory;
|
||||||
|
|
||||||
# TODO: create `local config` & return it seperately, so other modules can
|
# TODO: create `local config` & return it seperately, so other modules can
|
||||||
|
|
Loading…
Reference in a new issue