Home: Rename dankMaterialShell to dank-material-shell after flake update
This commit is contained in:
6
flake.lock
generated
6
flake.lock
generated
@ -96,7 +96,7 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"dankMaterialShell": {
|
"dank-material-shell": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"dgop": [
|
"dgop": [
|
||||||
"dgop"
|
"dgop"
|
||||||
@ -1264,7 +1264,7 @@
|
|||||||
"quickshell": {
|
"quickshell": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
"dankMaterialShell",
|
"dank-material-shell",
|
||||||
"nixpkgs"
|
"nixpkgs"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -1306,7 +1306,7 @@
|
|||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"caelestia": "caelestia",
|
"caelestia": "caelestia",
|
||||||
"dankMaterialShell": "dankMaterialShell",
|
"dank-material-shell": "dank-material-shell",
|
||||||
"devshell": "devshell",
|
"devshell": "devshell",
|
||||||
"dgop": "dgop",
|
"dgop": "dgop",
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
|
|||||||
@ -77,9 +77,9 @@
|
|||||||
dgop.inputs.nixpkgs.follows = "nixpkgs";
|
dgop.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
# dms-cli.url = "github:AvengeMedia/danklinux";
|
# dms-cli.url = "github:AvengeMedia/danklinux";
|
||||||
# dms-cli.inputs.nixpkgs.follows = "nixpkgs";
|
# dms-cli.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
dankMaterialShell.url = "github:AvengeMedia/DankMaterialShell";
|
dank-material-shell.url = "github:AvengeMedia/DankMaterialShell";
|
||||||
dankMaterialShell.inputs.nixpkgs.follows = "nixpkgs";
|
dank-material-shell.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
dankMaterialShell.inputs.dgop.follows = "dgop";
|
dank-material-shell.inputs.dgop.follows = "dgop";
|
||||||
|
|
||||||
# Hyprland (use flake so plugins are not built from source)
|
# Hyprland (use flake so plugins are not built from source)
|
||||||
hyprland.url = "github:hyprwm/Hyprland";
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
|
|||||||
@ -35,8 +35,8 @@
|
|||||||
# inputs.niri.homeModules.niri # Imported by system module
|
# inputs.niri.homeModules.niri # Imported by system module
|
||||||
inputs.noctalia.homeModules.default
|
inputs.noctalia.homeModules.default
|
||||||
inputs.caelestia.homeManagerModules.default
|
inputs.caelestia.homeManagerModules.default
|
||||||
inputs.dankMaterialShell.homeModules.dankMaterialShell.default
|
inputs.dank-material-shell.homeModules.dank-material-shell
|
||||||
inputs.dankMaterialShell.homeModules.dankMaterialShell.niri
|
inputs.dank-material-shell.homeModules.niri
|
||||||
|
|
||||||
# NOTE: Do NOT use this, use the system module (the HM module has to rely on fuse)
|
# NOTE: Do NOT use this, use the system module (the HM module has to rely on fuse)
|
||||||
# inputs.impermanence.homeManagerModules.impermanence
|
# inputs.impermanence.homeManagerModules.impermanence
|
||||||
|
|||||||
@ -18,7 +18,7 @@ in {
|
|||||||
message = "Can't enable Niri config with Niri disabled!";
|
message = "Can't enable Niri config with Niri disabled!";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
assertion = !(programs.noctalia-shell.enable && programs.dankMaterialShell.enable);
|
assertion = !(programs.noctalia-shell.enable && programs.dank-material-shell.enable);
|
||||||
message = "Can't enable Noctalia and DankMaterialShell at the same time!";
|
message = "Can't enable Noctalia and DankMaterialShell at the same time!";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@ -61,7 +61,7 @@ in {
|
|||||||
programs = {
|
programs = {
|
||||||
# TODO: Those should be modules with their own options
|
# TODO: Those should be modules with their own options
|
||||||
noctalia-shell = import ./noctalia.nix {inherit color;};
|
noctalia-shell = import ./noctalia.nix {inherit color;};
|
||||||
dankMaterialShell = import ./dankMaterialShell.nix {inherit color;};
|
dank-material-shell = import ./dankMaterialShell.nix {inherit color;};
|
||||||
|
|
||||||
# TODO: Extract options
|
# TODO: Extract options
|
||||||
niri = {
|
niri = {
|
||||||
@ -386,6 +386,14 @@ in {
|
|||||||
action = show-hotkey-overlay;
|
action = show-hotkey-overlay;
|
||||||
hotkey-overlay = {hidden = true;};
|
hotkey-overlay = {hidden = true;};
|
||||||
};
|
};
|
||||||
|
# "Alt+Tab" = {
|
||||||
|
# action = "next-window";
|
||||||
|
# hotkey-overlay = {title = "Switch to next window.";};
|
||||||
|
# };
|
||||||
|
# "Alt+Shift+Tab" = {
|
||||||
|
# action = "previous-window";
|
||||||
|
# hotkey-overlay = {title = "Switch to previous window.";};
|
||||||
|
# };
|
||||||
|
|
||||||
# Audio
|
# Audio
|
||||||
"XF86AudioRaiseVolume" = {
|
"XF86AudioRaiseVolume" = {
|
||||||
|
|||||||
Reference in New Issue
Block a user