Compare commits
2 commits
09b81bfd96
...
c13329a7aa
Author | SHA1 | Date | |
---|---|---|---|
c13329a7aa | |||
6be9441df1 |
2 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
users.users.nolan = {
|
users.users.nolan = {
|
||||||
description = "Nolan Darilek";
|
description = "Nolan Darilek";
|
||||||
|
@ -11,12 +13,15 @@
|
||||||
"pipewire"
|
"pipewire"
|
||||||
"pulse-access"
|
"pulse-access"
|
||||||
];
|
];
|
||||||
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.fish.enable = true;
|
||||||
|
|
||||||
home-manager.users.nolan = {
|
home-manager.users.nolan = {
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
programs = {
|
programs = {
|
||||||
bash.enable = true;
|
fish.enable = true;
|
||||||
direnv = {
|
direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
|
|
|
@ -43,6 +43,15 @@
|
||||||
credential.helper = "${pkgs.git.override { withLibsecret = true; }}/bin/git-credential-libsecret";
|
credential.helper = "${pkgs.git.override { withLibsecret = true; }}/bin/git-credential-libsecret";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
jujutsu = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
user = {
|
||||||
|
name = "Nolan Darilek";
|
||||||
|
email = "nolan@thewordnerd.info";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
obs-studio = {
|
obs-studio = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = with pkgs.obs-studio-plugins; [
|
plugins = with pkgs.obs-studio-plugins; [
|
||||||
|
|
Loading…
Add table
Reference in a new issue