Compare commits
4 Commits
4249feaa76
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48295559ac | ||
|
|
8768abb51f | ||
| dbc118dcbb | |||
| c969b8d6f1 |
10
README.md
10
README.md
@@ -10,11 +10,15 @@ Essentially things can be put into three categories (and folders):
|
|||||||
2. Profiles
|
2. Profiles
|
||||||
3. Features
|
3. Features
|
||||||
|
|
||||||
## Hosts
|
### Hosts
|
||||||
Machine specific config, how exactly to set each system up, especially with hardware and other such machine configs
|
Machine specific config, how exactly to set each system up, especially with hardware and other such machine configs
|
||||||
|
|
||||||
## Profiles
|
### Profiles
|
||||||
Generalized profiles that package large amounts of features in easy to import modules
|
Generalized profiles that package large amounts of features in easy to import modules
|
||||||
|
|
||||||
## Features
|
### Features
|
||||||
Every single software I have bothered setting up a module and config for
|
Every single software I have bothered setting up a module and config for
|
||||||
|
|
||||||
|
## Build
|
||||||
|
|
||||||
|
On a valid NixOS install one can run `sudo nixos-rebuild switch --flake .#HOST` to build the specific configuration for specified host.
|
||||||
@@ -12,12 +12,4 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.nixosModules.gnupg = { pkgs, ... }: {
|
|
||||||
programs.gnupg.agent = {
|
|
||||||
enable = true;
|
|
||||||
enableSSHSupport = true;
|
|
||||||
pinentryPackage = pkgs.pinentry-rofi;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
9
modules/features/gpg.nix
Normal file
9
modules/features/gpg.nix
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{ inputs, lib, self, ... }: {
|
||||||
|
flake.nixosModules.gnupg = { pkgs, ... }: {
|
||||||
|
programs.gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
enableSSHSupport = true;
|
||||||
|
pinentryPackage = pkgs.pinentry-rofi;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
zathura
|
zathura
|
||||||
mpv
|
mpv
|
||||||
obs
|
obs-studio
|
||||||
gimp
|
gimp
|
||||||
];
|
];
|
||||||
imports = [
|
imports = [
|
||||||
|
|||||||
Reference in New Issue
Block a user