mirror of
https://github.com/larstvei/nix-config.git
synced 2024-11-26 00:48:30 +00:00
Install kmonad
This commit is contained in:
parent
caa4b893ef
commit
c2d1d11231
25
flake.lock
25
flake.lock
@ -116,6 +116,30 @@
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"kmonad": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"dir": "nix",
|
||||
"lastModified": 1717741147,
|
||||
"narHash": "sha256-VcGu0i6/2PVFHmyrnLivxEARX2bcPLxgkSFoUYjx3YY=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "235b42610758355a664c153999c1ff03b4d918e6",
|
||||
"revCount": 793,
|
||||
"submodules": true,
|
||||
"type": "git",
|
||||
"url": "https://github.com/kmonad/kmonad?dir=nix"
|
||||
},
|
||||
"original": {
|
||||
"dir": "nix",
|
||||
"submodules": true,
|
||||
"type": "git",
|
||||
"url": "https://github.com/kmonad/kmonad?dir=nix"
|
||||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1717602782,
|
||||
@ -185,6 +209,7 @@
|
||||
"darwin": "darwin",
|
||||
"emacs-larstvei": "emacs-larstvei",
|
||||
"home-manager": "home-manager",
|
||||
"kmonad": "kmonad",
|
||||
"nixpkgs": "nixpkgs_3"
|
||||
}
|
||||
},
|
||||
|
@ -13,10 +13,14 @@
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
kmonad = {
|
||||
url = "git+https://github.com/kmonad/kmonad?submodules=1&dir=nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
emacs-larstvei.url = "github:larstvei/dot-emacs";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, darwin, home-manager, emacs-larstvei, ... }@inputs: {
|
||||
outputs = { self, nixpkgs, darwin, home-manager, kmonad, emacs-larstvei, ... }@inputs: {
|
||||
darwinConfigurations."larstvei-macbookpro" = darwin.lib.darwinSystem {
|
||||
system = "aarch64-darwin";
|
||||
|
||||
|
@ -1,8 +1,9 @@
|
||||
{ pkgs, emacs-larstvei, ... }: {
|
||||
{ pkgs, kmonad, emacs-larstvei, ... }: {
|
||||
|
||||
|
||||
home.packages = with pkgs; [
|
||||
emacs-larstvei.defaultPackage.${pkgs.system}
|
||||
kmonad.packages.${pkgs.system}.default
|
||||
(aspellWithDicts
|
||||
(dpkgs: with dpkgs; [
|
||||
en
|
||||
|
Loading…
Reference in New Issue
Block a user