Add kmonad service (needs configuring)
This commit is contained in:
parent
feb8dcee72
commit
8c15ff8959
23
flake.lock
23
flake.lock
|
@ -203,6 +203,28 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"kmonad": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"dir": "nix",
|
||||
"lastModified": 1698213131,
|
||||
"narHash": "sha256-RPfi08g5DHvq5oEX57sJ1al2smBk0d9d8gAzL7jRnNQ=",
|
||||
"owner": "kmonad",
|
||||
"repo": "kmonad",
|
||||
"rev": "1b2ec006259ddbe6cda30db8eb783e8177a9f12b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"dir": "nix",
|
||||
"owner": "kmonad",
|
||||
"repo": "kmonad",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nix-index-database": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -242,6 +264,7 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"home-manager": "home-manager",
|
||||
"kmonad": "kmonad",
|
||||
"nix-index-database": "nix-index-database",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"stylix": "stylix"
|
||||
|
|
17
flake.nix
17
flake.nix
|
@ -15,10 +15,14 @@
|
|||
url = "github:danth/stylix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
kmonad = {
|
||||
url = "github:kmonad/kmonad?dir=nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs, home-manager, nix-index-database, stylix, ... }@inputs:
|
||||
outputs = { self, nixpkgs, home-manager, nix-index-database, stylix, kmonad
|
||||
, ... }@inputs:
|
||||
let
|
||||
default = {
|
||||
hostName = "Atlas";
|
||||
|
@ -56,6 +60,7 @@
|
|||
home-manager.nixosModules.home-manager
|
||||
nix-index-database.nixosModules.nix-index
|
||||
stylix.nixosModules.stylix
|
||||
kmonad.nixosModules.default
|
||||
({ config, lib, pkgs, ... }: {
|
||||
boot.loader = {
|
||||
systemd-boot.enable = true;
|
||||
|
@ -167,15 +172,13 @@
|
|||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ/ZSSCN5sqrA+tdoIZr5EUm5DRuBV4dQ7J+QBEtUwUU xenia@Northstar"
|
||||
];
|
||||
in {
|
||||
root = {
|
||||
shell = pkgs.${shell};
|
||||
openssh = { inherit authorizedKeys; };
|
||||
};
|
||||
root.openssh = { inherit authorizedKeys; };
|
||||
${user} = {
|
||||
inherit group;
|
||||
isNormalUser = true;
|
||||
description = "Evie Litherland-Smith";
|
||||
extraGroups = [ "networkmanager" "wheel" "video" ];
|
||||
extraGroups =
|
||||
[ "networkmanager" "wheel" "video" "input" "uinput" ];
|
||||
shell = pkgs.${shell};
|
||||
initialHashedPassword =
|
||||
"$y$j9T$tHIPQt09Kf3KH2eIRze3g/$2mwSlcq27DTGvHNPJ5EP9/1CfL3bXP0F6oS/Vuffmn3";
|
||||
|
|
|
@ -497,7 +497,7 @@ For reference information, see [[https://orgmode.com][Org-mode website]]
|
|||
(use-package magit
|
||||
:ensure t)
|
||||
#+end_src
|
||||
** [5/7] Completion
|
||||
** [5/6] Completion
|
||||
*** DONE Vertico
|
||||
#+begin_src emacs-lisp
|
||||
(setq vertico-cycle t)
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
accounts-daemon.enable = true;
|
||||
dbus.packages = with pkgs; [ gcr ];
|
||||
gnome.gnome-keyring.enable = true;
|
||||
kmonad.enable = true;
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
|
@ -43,6 +44,7 @@
|
|||
enable = true;
|
||||
layout = "gb";
|
||||
xkbVariant = "";
|
||||
xkbOptions = "compose:ralt";
|
||||
displayManager.lightdm = {
|
||||
enable = true;
|
||||
greeters.gtk = {
|
||||
|
|
Loading…
Reference in a new issue