more refactor. adding shikane
This commit is contained in:
parent
14ad4cd2c5
commit
7b26c73b59
18 changed files with 851 additions and 764 deletions
21
modules/home/shikane.nix
Normal file
21
modules/home/shikane.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home.packages = [ pkgs.shikane ];
|
||||
|
||||
systemd.user.services.shikane = {
|
||||
Unit = {
|
||||
Description = "Shikane";
|
||||
PartOf = [ "graphical-session.target" ];
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "graphical-session.target" ];
|
||||
};
|
||||
Service = {
|
||||
Type = "simple";
|
||||
ExecStart = "shikane";
|
||||
};
|
||||
};
|
||||
|
||||
xdg.configFile."shikane".source = ../../homes/emenel/dotfiles/dot_config/shikane;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue