Compare commits

..

No commits in common. "1d2bbf359817898ac2aeb92db153c8b49d943edb" and "ccff3036c334769257cd04478b3d2401d6084b7d" have entirely different histories.

3 changed files with 13 additions and 38 deletions

View File

@ -29,42 +29,28 @@
outputs = { self, nixpkgs, home-manager, kak, unispect, ansi-utils, unambig-path }:
let
system = "aarch64-darwin";
pkgs = import nixpkgs { system = system; config.allowUnfree = true; };
xdg-runtime-dir = "/tmp/xdg-rt";
mkPkgs = system: import nixpkgs { system = system; config.allowUnfree = true; };
mkHome = {system, pkgs} : import ./home.nix {
home = import ./home.nix {
kak-pkg = kak.packages.${system}.kak;
unispect = unispect.packages.${system}.unispect;
ansi-utils = ansi-utils.packages.${system};
unambig-path = unambig-path.packages.${system}.unambig-path;
inherit pkgs xdg-runtime-dir;
};
in {
homeConfigurations."xenia" =
let
system = "aarch64-darwin";
pkgs = mkPkgs system;
home = mkHome { inherit system pkgs; };
in home-manager.lib.homeManagerConfiguration {
inherit pkgs;
homeConfigurations."xenia" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
home
( import ./mac.nix { emacs = home.programs.emacs.package; inherit pkgs xdg-runtime-dir; } )
];
};
homeConfigurations."coral" =
let
system = "x86_64-linux";
pkgs = mkPkgs system;
home = mkHome { inherit system pkgs; };
in home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
home
];
modules = [
home
( import ./mac.nix { emacs = home.programs.emacs.package; inherit pkgs xdg-runtime-dir; } )
];
};
};
}

View File

@ -118,17 +118,6 @@ in rec {
nix-direnv.enable = true;
};
programs.hyfetch = {
enable = true;
settings = {
preset = "nonbinary";
mode = "rgb";
color_align = {
mode = "horizontal";
};
};
};
programs.tmux = {
enable = true;
escapeTime = 50;

View File

@ -44,7 +44,7 @@ with pkgs; let
[language.haskell]
filetypes = ["haskell"]
roots = ["Setup.hs", "stack.yaml", "*.cabal"]
command = "haskell-language-server-wrapper"
command = "hls"
[language.python]
filetypes = ["python"]