Compare commits
No commits in common. "bde48193073a8023ccc212b3c86d95c85862a605" and "9c5af6a83d28f617ff2bd4e78d7ea362a815fa62" have entirely different histories.
bde4819307
...
9c5af6a83d
3 changed files with 5 additions and 22 deletions
|
|
@ -24,7 +24,7 @@
|
||||||
#../modules/wm/hypr/hypridle.nix
|
#../modules/wm/hypr/hypridle.nix
|
||||||
../modules/wm/hypr/hyprlock.nix
|
../modules/wm/hypr/hyprlock.nix
|
||||||
../modules/kanshi.nix
|
../modules/kanshi.nix
|
||||||
# ../modules/ags
|
../modules/ags
|
||||||
../modules/mako.nix
|
../modules/mako.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -142,16 +142,6 @@
|
||||||
formatter.command = "${pkgs.ormolu}/bin/ormolu";
|
formatter.command = "${pkgs.ormolu}/bin/ormolu";
|
||||||
language-servers = ["haskell-language-server"];
|
language-servers = ["haskell-language-server"];
|
||||||
}
|
}
|
||||||
{
|
|
||||||
name = "rust";
|
|
||||||
indent = {
|
|
||||||
tab-width = 2;
|
|
||||||
unit = " ";
|
|
||||||
};
|
|
||||||
auto-format = true;
|
|
||||||
formatter.command = "${pkgs.rustfmt}/bin/rustfmt";
|
|
||||||
language-servers = ["rust-analyzer"];
|
|
||||||
}
|
|
||||||
# {
|
# {
|
||||||
# name = "c-sharp";
|
# name = "c-sharp";
|
||||||
# source = "source.cs";
|
# source = "source.cs";
|
||||||
|
|
@ -186,10 +176,6 @@
|
||||||
command = "${pkgs.haskell-language-server}/bin/haskell-language-server-wrapper";
|
command = "${pkgs.haskell-language-server}/bin/haskell-language-server-wrapper";
|
||||||
};
|
};
|
||||||
|
|
||||||
rust-analyzer = {
|
|
||||||
command = "${pkgs.rust-analyzer}/bin/rust-analyzer";
|
|
||||||
};
|
|
||||||
|
|
||||||
# C# language services
|
# C# language services
|
||||||
OmniSharp = {
|
OmniSharp = {
|
||||||
command = "${pkgs.omnisharp-roslyn}/bin/OmniSharp";
|
command = "${pkgs.omnisharp-roslyn}/bin/OmniSharp";
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
}: let
|
}: let
|
||||||
home-manager = builtins.fetchTarball {
|
home-manager = builtins.fetchTarball {
|
||||||
url = "https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz";
|
url = "https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz";
|
||||||
sha256 = "07pk5m6mxi666dclaxdwf7xrinifv01vvgxn49bjr8rsbh31syaq";
|
sha256 = "1y919cqrlmq0k44rgnacaq4zq37jj4rdh6f2swp6y2jiz28xb0iq";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
|
|
@ -32,7 +32,6 @@ in {
|
||||||
nix.settings.experimental-features = [
|
nix.settings.experimental-features = [
|
||||||
"nix-command"
|
"nix-command"
|
||||||
"flakes"
|
"flakes"
|
||||||
"pipe-operators"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfreePredicate = let
|
nixpkgs.config.allowUnfreePredicate = let
|
||||||
|
|
@ -233,7 +232,9 @@ in {
|
||||||
home-manager = {
|
home-manager = {
|
||||||
users.me = import ../../homes/me;
|
users.me = import ../../homes/me;
|
||||||
extraSpecialArgs = {inherit inputs pkgs pkgs-unstable;};
|
extraSpecialArgs = {inherit inputs pkgs pkgs-unstable;};
|
||||||
# sharedModules = [ ];
|
sharedModules = [
|
||||||
|
inputs.ags.homeManagerModules.default
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# ---- ENVIRONMENT VARIABLES ----
|
# ---- ENVIRONMENT VARIABLES ----
|
||||||
|
|
@ -273,7 +274,6 @@ in {
|
||||||
# Shell
|
# Shell
|
||||||
bash
|
bash
|
||||||
fish
|
fish
|
||||||
elvish # reference for crysh development
|
|
||||||
shellcheck
|
shellcheck
|
||||||
grc # colorise command outputs
|
grc # colorise command outputs
|
||||||
moreutils
|
moreutils
|
||||||
|
|
@ -301,8 +301,6 @@ in {
|
||||||
# Rust
|
# Rust
|
||||||
cargo
|
cargo
|
||||||
rustc
|
rustc
|
||||||
rustfmt
|
|
||||||
rust-analyzer
|
|
||||||
# Go
|
# Go
|
||||||
go
|
go
|
||||||
# Nim
|
# Nim
|
||||||
|
|
@ -321,7 +319,6 @@ in {
|
||||||
nixd # lsp for nix
|
nixd # lsp for nix
|
||||||
nix-prefetch-git
|
nix-prefetch-git
|
||||||
nix-index
|
nix-index
|
||||||
deploy-rs
|
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
python312 # I use 3.12 since it's in a pretty stable state now
|
python312 # I use 3.12 since it's in a pretty stable state now
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue