Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmus-kirk committed Dec 22, 2024
1 parent 80d019b commit f2cd84b
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
10 changes: 2 additions & 8 deletions configurations/home-manager/deck/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
in {
kirk = {
terminalTools.enable = true;
foot.enable = true;
fzf.enable = true;
git = {
enable = true;
userEmail = "[email protected]";
userName = "rasmus-kirk";
};
helix.enable = true;
#mpv.enable = true;
homeManagerScripts = {
enable = true;
configDir = configDir;
Expand Down Expand Up @@ -56,20 +55,15 @@ in {

home.packages = with pkgs; [
# Misc
freetube
jellyfin
mpv
qbittorrent

# Browsers
librewolf

# Chat
signal-desktop

# Fonts
(nerdfonts.override {fonts = ["FiraCode"];})
fira-code

# Misc Terminal Tools
wl-clipboard
];
Expand Down
16 changes: 16 additions & 0 deletions modules/home-manager/monero/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ with lib; let
${cfg.extraConfig}
'';

monero = pkgs.writeShellApplication {
name = "monero";
text = ''
wallet_path="$HOME/media/documents/wallets/user"
mkdir -p "$wallet_path"
monero-wallet-cli \
--wallet-file "$wallet_path"/user.keys \
--log-file "$wallet_path"/log.log
'';
};
in {
options.kirk.monero = {
enable = mkEnableOption "the monero node user-level systemd-service.";
Expand Down Expand Up @@ -41,5 +52,10 @@ in {
SuccessExitStatus = [0 1];
};
};

home.packages = with pkgs; [
monero-cli
monero
];
};
}

0 comments on commit f2cd84b

Please sign in to comment.