added font config
This commit is contained in:
parent
2178b7e2d9
commit
8252fc9f31
10 changed files with 3805 additions and 13 deletions
|
@ -1,11 +1,15 @@
|
|||
{ inputs, ... }:
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
niri = inputs.niri.packages.x86_64-linux.default;
|
||||
in{
|
||||
environment.systemPackages = [ niri ];
|
||||
/*
|
||||
services.xserver.displayManager.sessionPackages = [
|
||||
niri
|
||||
niri = pkgs.callPackage ./niri {};
|
||||
niriSession = pkgs.writeShellScriptBin "niri-session" ./niri/niri-session;
|
||||
niriService = ./niri/service.nix;
|
||||
in {
|
||||
imports = [
|
||||
niriService
|
||||
];
|
||||
|
||||
environment.systemPackages = [ niri niriSession];
|
||||
services.xserver.displayManager.sessionPackages = [
|
||||
niriSession
|
||||
];
|
||||
*/
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue