started niri config and added gnome char to packages
This commit is contained in:
parent
4170fcfba5
commit
08a6a08e63
3 changed files with 21 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, niri, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
|
|
19
base-system/niri/default.nix
Normal file
19
base-system/niri/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "niri";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "YaLTeR";
|
||||
repo = "niri";
|
||||
hash = "sha256-889d062df7d89bf8084414c6f8fd87075c3cf85a";
|
||||
};
|
||||
|
||||
cargoSha = lib.fakeHash;
|
||||
|
||||
meta = with lib; {
|
||||
description = "";
|
||||
homepage = "";
|
||||
license = license.gpl3Only;
|
||||
};
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
pkgs: with pkgs; [
|
||||
gnomeExtensions.paperwm
|
||||
gnome.gnome-characters
|
||||
thunderbird
|
||||
helix
|
||||
nil
|
||||
|
|
Loading…
Add table
Reference in a new issue