user/comma: init
This commit is contained in:
parent
54fd3373d0
commit
2f4cbd382c
8 changed files with 33 additions and 2 deletions
21
flake.lock
generated
21
flake.lock
generated
|
|
@ -474,6 +474,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"nix-index-database": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1773552174,
|
||||||
|
"narHash": "sha256-mHSRNrT1rjeYBgkAlj07dW3+1nFEgAd8Gu6lgyfT9DU=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-index-database",
|
||||||
|
"rev": "8faeb68130df077450451b6734a221ba0d6cde42",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "nix-index-database",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1764242076,
|
"lastModified": 1764242076,
|
||||||
|
|
@ -728,6 +748,7 @@
|
||||||
"linux-tkg": "linux-tkg",
|
"linux-tkg": "linux-tkg",
|
||||||
"neovim-nightly": "neovim-nightly",
|
"neovim-nightly": "neovim-nightly",
|
||||||
"nix-gaming": "nix-gaming",
|
"nix-gaming": "nix-gaming",
|
||||||
|
"nix-index-database": "nix-index-database",
|
||||||
"nixpkgs": "nixpkgs_6",
|
"nixpkgs": "nixpkgs_6",
|
||||||
"nvim-treesitter": "nvim-treesitter",
|
"nvim-treesitter": "nvim-treesitter",
|
||||||
"pastel": "pastel",
|
"pastel": "pastel",
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,8 @@
|
||||||
neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
|
neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
nix-gaming.url = "github:fufexan/nix-gaming";
|
nix-gaming.url = "github:fufexan/nix-gaming";
|
||||||
|
nix-index-database.url = "github:nix-community/nix-index-database";
|
||||||
|
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
|
spicetify-nix.url = "github:Gerg-L/spicetify-nix";
|
||||||
spicetify-nix.inputs.nixpkgs.follows = "nixpkgs";
|
spicetify-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ in {
|
||||||
];
|
];
|
||||||
user = mkAttrsFromPaths [
|
user = mkAttrsFromPaths [
|
||||||
./user/catppuccin.nix
|
./user/catppuccin.nix
|
||||||
|
./user/comma.nix
|
||||||
./user/direnv.nix
|
./user/direnv.nix
|
||||||
./user/dunst.nix
|
./user/dunst.nix
|
||||||
./user/eww.nix
|
./user/eww.nix
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [ ./packages-gui.nix ];
|
imports = [ ./packages-gui.nix ];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
comma
|
|
||||||
# ecryptfs
|
# ecryptfs
|
||||||
efibootmgr
|
efibootmgr
|
||||||
fd
|
fd
|
||||||
|
|
|
||||||
7
modules/user/comma.nix
Normal file
7
modules/user/comma.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{ inputs, ... }: {
|
||||||
|
imports = [
|
||||||
|
inputs.nix-index-database.homeModules.default
|
||||||
|
];
|
||||||
|
programs.nix-index.enable = true;
|
||||||
|
programs.nix-index-database.comma.enable = true;
|
||||||
|
}
|
||||||
|
|
@ -102,7 +102,6 @@ let
|
||||||
bindkey -a -r ':'
|
bindkey -a -r ':'
|
||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
programs.command-not-found.enable = true;
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dotDir = "${config.xdg.configHome}/zsh";
|
dotDir = "${config.xdg.configHome}/zsh";
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
imports = with modules.user; [
|
imports = with modules.user; [
|
||||||
|
comma
|
||||||
direnv
|
direnv
|
||||||
git
|
git
|
||||||
neovim-minimal
|
neovim-minimal
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@
|
||||||
sessionVariables
|
sessionVariables
|
||||||
|
|
||||||
catppuccin
|
catppuccin
|
||||||
|
comma
|
||||||
direnv
|
direnv
|
||||||
git
|
git
|
||||||
gpg
|
gpg
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue