Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot] 4247497b76
Merge 4dd2b5bdac into be29a97b84 2023-12-13 15:38:59 +01:00
10 changed files with 25 additions and 41 deletions

@ -1 +1 @@
Subproject commit 00dbd710649422530ae2f14601d99394f9f38753
Subproject commit 5ce901957503313358dcc9b5a0659588aae811d8

View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1704277720,
"narHash": "sha256-meAKNgmh3goankLGWqqpw73pm9IvXjEENJloF0coskE=",
"lastModified": 1700795494,
"narHash": "sha256-gzGLZSiOhf155FW7262kdHo2YDeugp3VuIFb4/GGng0=",
"owner": "lnl7",
"repo": "nix-darwin",
"rev": "0dd382b70c351f528561f71a0a7df82c9d2be9a4",
"rev": "4b9b83d5a92e8c1fbfd8eb27eda375908c11ec4d",
"type": "github"
},
"original": {
@ -23,11 +23,11 @@
"dotfiles": {
"flake": false,
"locked": {
"lastModified": 1702297498,
"narHash": "sha256-wBeX8mOuPwXzHmPSTwcafa3ioV1r1biBaM4Pz9TQezw=",
"lastModified": 1698960542,
"narHash": "sha256-prp6oSZ8/WaX4wtZ5eT5CDKDRBAFcMSiJg5S0vSOCmg=",
"ref": "refs/heads/master",
"rev": "be29a97b84dbb54e125dac19df3478464b7f76ca",
"revCount": 456,
"rev": "ed7352b8353dbf36d27be4df6c16326869eb5026",
"revCount": 449,
"submodules": true,
"type": "git",
"url": "https://github.com/keanuplayz/dotfiles"
@ -45,11 +45,11 @@
]
},
"locked": {
"lastModified": 1702195668,
"narHash": "sha256-Lxmjez0nfNBptdqV5GsXKm7Bb7swjGsrxiLxWJu0tL8=",
"lastModified": 1700392168,
"narHash": "sha256-v5LprEFx3u4+1vmds9K0/i7sHjT0IYGs7u9v54iz/OA=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "33110fb3c7fe6a94b98b641866a5eddb64b7c23f",
"rev": "28535c3a34d79071f2ccb68671971ce0c0984d7e",
"type": "github"
},
"original": {
@ -61,11 +61,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1705033721,
"narHash": "sha256-K5eJHmL1/kev6WuqyqqbS1cdNnSidIZ3jeqJ7GbrYnQ=",
"lastModified": 1700854570,
"narHash": "sha256-GiwMS5sWSgF/CyZYbm+G5EcgG1VOEyvcsP5lE1L97Aw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a1982c92d8980a0114372973cbdfe0a307f1bdea",
"rev": "cbd3f3722ac41a200c1655141e021cf12c3ba4e6",
"type": "github"
},
"original": {

View File

@ -20,7 +20,7 @@
outputs = { self, nixpkgs, home-manager, dotfiles, darwin }: {
darwinConfigurations."alymac" = darwin.lib.darwinSystem {
system = "x86_64-darwin";
specialArgs = { inherit self; inherit dotfiles; };
specialArgs = { inherit dotfiles; };
modules = [
home-manager.darwinModules.home-manager
./hosts/alymac/default.nix

View File

@ -1,4 +1,4 @@
{ self, pkgs, lib, dotfiles, ... }:
{ pkgs, lib, dotfiles, ... }:
with lib;
let
@ -54,6 +54,7 @@ let
dhall
dhall-json
dhall-lsp-server
dotnet-sdk_8
go
jdk
kotlin
@ -70,6 +71,7 @@ let
programs = [
rectangle
slack
tailscale
];
@ -79,7 +81,6 @@ let
fonts = [
nerdfonts
ibm-plex
];
python = with python311Packages; [
@ -178,7 +179,7 @@ in
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit self; inherit dotfiles; };
extraSpecialArgs = { inherit dotfiles; };
users.alyxia = { pkgs, ... }: {
# Defined further above, generates a list of files to import.
imports = validFiles ./.;
@ -210,6 +211,7 @@ in
taps = [
"drud/ddev"
"homebrew/cask"
"homebrew/cask-versions"
"int128/kubelogin"
];
@ -220,17 +222,11 @@ in
"composer"
"croc"
"ddev"
"deno"
"dotnet"
"ferium"
"gradle"
"kubelogin"
"mkcert"
"nss"
"pinentry-mac"
"pkg-config"
"poetry"
"rustup"
"sdl2"
# Fyra crap, but from Homebrew because someone doesn't know how to
@ -263,9 +259,7 @@ in
"itch"
"iterm2"
"lens"
"minecraft"
"obs"
"orbstack"
"phpstorm"
"plexamp"
"raycast"
@ -273,7 +267,6 @@ in
"rubymine"
"sequel-ace"
"shottr"
"slack"
"spotify"
"steam"
"texifier"

View File

@ -1,11 +1,11 @@
{ self, pkgs, ... }:
{ pkgs, dotfiles, ... }:
{
programs.neovim = {
enable = true;
package = pkgs.neovim-unwrapped;
extraConfig = ''source ~/.dotfiles/nvim/init.vim"source ${self}/nvim/init.vim'';
extraConfig = "source ${dotfiles}/nvim/init.vim";
coc = {
enable = true;
@ -17,20 +17,13 @@
filetypes = [ "nix" ];
rootPatterns = [ "flake.nix" ];
"settings.nil" = {
"formatting.command" = [ "nixpkgs-fmt" ];
"formatting.command" = ["nixpkgs-fmt"];
};
};
"go.goPlsOptions" = {
completion = true;
completeUnimported = true;
};
rescript = {
enable = true;
command = "rescript-language-server";
args = [ "--node-ipc" ];
filetypes = [ "rescript" ];
rootPatterns = [ "rescript.json" "bsconfig.json" ];
};
};
};
};

View File

@ -1,12 +1,11 @@
{ self, ... }:
{ dotfiles, ... }:
{
programs.zsh = {
enable = true;
initExtra = ''
export GPG_TTY=$(tty)
source ~/.dotfiles/zsh/zshrc #source ${self}/zsh/zshrc
source "$HOME/.cargo/env"
source ${dotfiles}/zsh/zshrc
[[ -d "$HOME/.local/bin" ]] || mkdir "$HOME/.local/bin"

View File

@ -46,7 +46,6 @@ let s:plug = funcref('dotfiles#plugman#register')
call s:plug('tpope/vim-projectionist')
call s:plug('tpope/vim-dispatch')
" }}}
call s:plug('rescript-lang/vim-rescript')
" }}}
" coc {{{