Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtnvgr committed Oct 24, 2023
1 parent 1b8013d commit ae7010b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 10 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
<h1 align="center">snezhok</h1>
# snezhok

<p align="center">
My NixOS flake
</p>

<h2 align="center">
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/palette/macchiato.png" width="600px" /> <br>
</h2>
My NixOS flake

## Hosts

- `nixie` - personal laptop
- **nixie** - personal laptop

## Installation

Expand Down
5 changes: 4 additions & 1 deletion core/syspackages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
wget
htop
neofetch
p7zip
file

p7zip
unrar
unzip
];
}
2 changes: 2 additions & 0 deletions hosts/nixie/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
enable = true;
musicDirectory = "/mnt/ssd/Music/sorted";
};

media.enable = true;
};

cli = {
Expand Down
1 change: 1 addition & 0 deletions modules/feats/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
./sound
./midi
./music
./media
./gtk
];
}
16 changes: 16 additions & 0 deletions modules/feats/media/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{ pkgs, lib, config, user, ... }:

with lib;
let
cfg = config.modules.feats.media;
colors = config.colorScheme.colors;
in
{
options.modules.feats.media.enable = mkEnableOption "media";

config = mkIf cfg.enable {
home-manager.users.${user} = {
home.packages = with pkgs; [ feh mpv ];
};
};
}

0 comments on commit ae7010b

Please sign in to comment.